SA-MP Forums Archive
Skip class selection - 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)
+--- Thread: Skip class selection (/showthread.php?tid=335678)



Skip class selection - Tomer!.$ - 19.04.2012

I want the player to just spawn when he logs in without having this class selection thing.. without the spawn button and such..


Re: Skip class selection - IstuntmanI - 19.04.2012

Use SpawnPlayer at login.


Re : Skip class selection - Tomer!.$ - 19.04.2012

Not working, anyone else?


Re: Skip class selection - [D]ry[D]esert - 19.04.2012

PHP код:
public OnPlayerConnect(playerid)
{
    
SpawnPlayer(playerid);
    return 
1;




Re : Skip class selection - Tomer!.$ - 19.04.2012

I know and it's not working.


Re: Skip class selection - [WSF]ThA_Devil - 19.04.2012

pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerSkin(playerid,0); // player must have skin
    SpawnPlayer(playerid);
    return 1;
}



Re : Skip class selection - Tomer!.$ - 19.04.2012

Still putting me in class selection.


Re: Skip class selection - SiEx - 19.04.2012

[ame]http://www.youtube.com/watch?v=2G3o6Os1n30[/ame]

Maybe this will help you


Re : Skip class selection - Tomer!.$ - 19.04.2012

Maybe you didn't watch this video until the end but it's still showing him the class selection.


Re: Skip class selection - [MG]Dimi - 19.04.2012

Do you have any filterscript or something else that would return player to class selection?