Command /refresh - 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: Command /refresh (
/showthread.php?tid=254418)
Command /refresh -
V4at - 10.05.2011
How to get the player position update command - / refresh?
Re: Command /refresh -
xRyder - 10.05.2011
So what actually should that command do? And which command processor you use?
Re : Command /refresh -
V4at - 11.05.2011
If a player can not move must somehow update the coordinates that he could move
Re: Command /refresh -
park4bmx - 11.05.2011
I don't really understand what you mean
If the player is frozen or can't move then u would use /refresh
And then he would be unfrozen and can move again ?
Re : Command /refresh -
V4at - 11.05.2011
If a player can not move themselves because seizing. I mean have not frozen / unforzen
Re : Command /refresh -
V4at - 11.05.2011
For example the exchange of skin can sometimes be stuck and how to do that again to move
Re: Command /refresh -
park4bmx - 11.05.2011
TogglePlayerControlable(playerid,toggle);
toggles. =. 0 to freeze the player or 1 to unfreeze them
Re: Command /refresh -
Sasino97 - 11.05.2011
pawn Код:
if(strcmp(cmd, "/refresh", true) == 0) return TogglePlayerControllable(playerid, true), 1;
Re : Command /refresh -
V4at - 11.05.2011
Thank you