Skip Spawn - 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: Skip Spawn (
/showthread.php?tid=196593)
Skip Spawn -
Rokzlive - 06.12.2010
How do i make it so that it skips the class selection and spawns you automaticallly at a certain x y z point?
Re: Skip Spawn -
The_Moddler - 06.12.2010
pawn Код:
public OnPlayerRequestClass(playerid)
{
SpawnPlayer(playerid)
SetPlayerPos(playerid, X, Y, Z); //Change your coords
return 1;
}
Re: Skip Spawn -
Rokzlive - 06.12.2010
thanks dude