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.