class selection..!
#1

is this possible when enter my password and click on register



the player automatically spawn to this position without class selection ?
Reply
#2

i don't know if it's possible or not, but why do you want this ?
the class selections is so important to players, unless if you want all skins would be CJ in the game !!
Reply
#3

Quote:
Originally Posted by AnonScripter
Посмотреть сообщение
i don't know if it's possible or not, but why do you want this ?
the class selections is so important to players, unless if you want all skins would be CJ in the game !!
He can easily make a cmd which will change the skins to w/e he would like to.


P.S. - To your question, yes it is possible, like that:

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    SetTimerEx("SpawnThePlayer", 1, 0, "i", playerid);
    return 1;
}
Add that to your script first, than use OnPlayerSpawn to edit the information with X,Y,Z.

Under OnPlayerSpawn, add that:

pawn Код:
forward SpawnThePlayer(playerid);
public SpawnThePlayer(playerid)
{
    SpawnPlayer(playerid);
    return 1;
}
Hope this helped, good luck.
Reply
#4

Quote:
Originally Posted by CesarLT
Посмотреть сообщение
He can easily make a cmd which will change the skins to w/e he would like to.


P.S. - To your question, yes it is possible, like that:

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    SetTimerEx("SpawnThePlayer", 1, 0, "i", playerid);
    return 1;
}
Add that to your script first, than use OnPlayerSpawn to edit the information with X,Y,Z.

Under OnPlayerSpawn, add that:

pawn Код:
forward SpawnThePlayer(playerid);
public SpawnThePlayer(playerid)
{
    SpawnPlayer(playerid);
    return 1;
}
Hope this helped, good luck.
its worked.. thank you
Reply
#5

Quote:
Originally Posted by BoU3A
Посмотреть сообщение
its worked.. thank you
Good to hear, always welcome.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)