21.07.2012, 11:50
pawn Код:
//after the animation
SetTimerEx("CellphoneDisapear", DISAPPEAR_TIME, false, "d", playerid);
//on top of the script
forward public CellphoneDisappear(playerid);
// where ever you want :D
public CellphoneDisappear(playerid)
{
RemovePlayerAttachedObject(playerid, 4);
return 1;//don't know if this is necessary
}