objets take long to load - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: objets take long to load (
/showthread.php?tid=262223)
objets take long to load -
eblood1 - 17.06.2011
hi all i got this problem everytime i goto to a place like /aa or any tele objets take long to load some time people glitch threw the objets how can u fix that?
Re: objets take long to load - [L3th4l] - 17.06.2011
pawn Код:
TogglePlayerControllable(playerid, false);
SetTimerEx("Unfreeze", 3000, false, "i", playerid); // Place it in /aa
forward Unfreeze(nab);
public Unfreeze(nab)
{
return TogglePlayerControllable(nab, true);
}
Re: objets take long to load -
eblood1 - 17.06.2011
Quote:
Originally Posted by [L3th4l]
pawn Код:
TogglePlayerControllable(playerid, false); SetTimerEx("Unfreeze", 3000, false, "i", playerid); // Place it in /aa
forward Unfreeze(nab); public Unfreeze(nab) { return TogglePlayerControllable(nab, true); }
|
but is not only /aa is everywhere i teleport
Re: objets take long to load -
HydraX - 17.06.2011
Then place
pawn Код:
SetTimerEx("Unfreeze", 3000, false, "i", playerid);
Into every teleport you have.
Re: objets take long to load -
eblood1 - 17.06.2011
Quote:
Originally Posted by HydraX
Then place
pawn Код:
SetTimerEx("Unfreeze", 3000, false, "i", playerid);
Into every teleport you have.
|
ok i will try it thanxz