17.02.2018, 02:01
Quote:
|
you need to actually spawn the player using SpawnPlayer(playerid); in OnPlayerRequestClass, and then put the player into a custom Spawn Selection.
|
Код:
public OnPlayerRequestClass(playerid)
{
SetTimerEx("SkipSpawn",10,0,"i",playerid);
ShowPlayerDialog(playerid, ...); //Login Dialog
return 1;
}
Код:
forward SkipSpawn(playerid);
public SkipSpawn(playerid)
{
SpawnPlayer(playerid);
return 1;
}
if there is some player on coke, he can fast click the SPAWN button and that is
NOT what i want ... I want to absolutely 100% KILL THOSE GOD DAMN BUTTONS!
...


