Code:
 action item_normal()
{
my.string1 = str_create("#32");
str_cpy(my.string1,"No_Name");
wait(3);
animatio();
my.enable_click = on;
while(GSTNet_Handle(my) == 0){wait(1);}
my.fat=on;
my.narrow=on;
c_updatehull(my,0);
While(my._Item_ID==0)
{
wait(1);
}
my.scale_x=1.001; // workaround
wait(-1); // workaround
my.scale_x=1; // workaround
if(GSTNet_Connection() == 2) // ist er ein client?
{

my._update=0;
wait(-1);
while(1)
{
if(player)
{
if(mouse_ent==my)
{
Show_Name();
}

meine_funktion(my._Item_funk);
if(vec_dist(player.x,my.x)<update_dist&&my._update==0)
{
my._update=1;
str_for_num(string_temp3,my._Item_ID);
GSTNet_ClientSend(1, 16, string_temp3);
}
}
wait(1);
}
}
else //server
{
while(1)
{
wait(1);
}
}

}


das ist der code.
selbst ohne aktion passiert das mouse_ent nicht klappt und das modell wegclippt.