Not unfreezing me? - 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: Not unfreezing me? (
/showthread.php?tid=126651)
Not unfreezing me? -
Torran - 09.02.2010
After i go through tutorial ( My RP From Scratch )
And i spawn, Im frozen, Its supposed to unfreeze me, But it dosent,
pawn Код:
public PlayerSpawn(playerid)
{
***************
***************
***************
***************
***************
***************
Unfreeze(playerid);
return 1;
}
Thats what i have now,
I used to have ( Still didnt unfreeze me )
pawn Код:
public PlayerSpawn(playerid)
{
***************
***************
***************
***************
***************
***************
TogglePlayerControllable(playerid, 1);
return 1;
}
Anyone know why?
EDIT: I replaced most of my code with stars
Re: Not unfreezing me? -
SlashPT - 09.02.2010
its just me or your using PlayerSpawn and the SAMP server public is OnPlayerSpawn??
Re: Not unfreezing me? -
Torran - 09.02.2010
OnPlayerSpawn returns to PlayerSpawn,
But i fixed it now anyway