How to bypass class selection
#1

How to bypass class selection for only certain variables a player, I tried spawnplayer but didnt work, where are what function can i use?
Reply
#2

You could use a dialog to bypass it.

For your register system, then use the spawnplayer. I think that would work.
Reply
#3

Just remove the class selection and your good to go.
Reply
#4

I used SpawnPlayer after player login dialog, and for testing also used under onplayerconnect both didnt work, So..? @blazee i need class selection
Reply
#5

Try to put it at OnPlayerSpawn and see.

Also explain deeper what you mean please.
Reply
#6

I meant for some defined player , i need to skip class selection, so they auto spawn with skin they chose before (which i store in file and get the variable), I just need how to skip the class selection, and lol Onplayerspawn would make no sense
Reply
#7

pawn Код:
forward SkipClassSelection(playerid);
public OnPlayerRequestClass(playerid,classid)
{
    SetTimerEx("SkipClassSelection",1,0,"d",playerid);
}
public SkipClassSelection(playerid)
{
   SpawnPlayer(playerid);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)