SA-MP Forums Archive
Spawn bar - 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: Spawn bar (/showthread.php?tid=290078)



Spawn bar - grantism - 14.10.2011

How am I able to remove the spawn bar? I changed it to return 0 so nothing happens, but it still shows.. :/


Re: Spawn bar - MonkZemun - 14.10.2011

Try this:

PHP код:
forward SkipSpawn(playerid); 
PHP код:
public OnPlayerRequestClass(playeridclassid)
{
     
SetTimerEx("SkipSpawn",0,0,"i",playerid);
     return 
1;

PHP код:
public SkipSpawn(playerid)
{
    
SpawnPlayer(playerid);




Re: Spawn bar - grantism - 14.10.2011

+1 rep worked!