28.07.2012, 19:22
Quote:
Hmm..
Maybe make a timer and every so often it will reload the objects for that player. It could possibly just be a simple load problem. The world change is also probably effecting it. Make a timer so when the player types the command it will freeze them while the objects load. That could be another idea. |
pawn Код:
public OnPlayerSpawn(playerid)
{
TogglePlayerControllable(playerid, false);
SetTimerEx("Unfreeze", 5000, false, "i", playerid);
return 1;
}
forward Unfreeze(playerid);
public Unfreeze(playerid)
{
TogglePlayerControllable(playerid, true);
return 1;
}