01.02.2013, 16:53
Sometime player enter on casino so they falling and tp to red country and died. can u tell me what is the problem and how to fix it?
SetTimerEx("LoadInt",2500,0,"i",playerid);
TogglePlayerControllable(playerid, false);
//Then at the bottem on your script:
forward LoadInt(playerid);
public LoadInt(playerid)
{
TogglePlayerControllable(playerid, true);
return 1;
}
Well when they enter the interior place:
pawn Код:
|
SetTimerEx("LoadInt",2500,0,"i",playerid); TogglePlayerControllable(playerid, false); |