Skip VIP level checking for non-VIP user
This commit is contained in:
parent
142d75a759
commit
307247f6e9
@ -818,10 +818,12 @@ public OnPlayerSpawn( playerid )
|
||||
SetPlayerColorToTeam( playerid );
|
||||
SetPlayerVirtualWorld( playerid, 0 );
|
||||
|
||||
if ( p_VIPLevel[ playerid ] >= VIP_REGULAR ){
|
||||
if ( p_VIPLevel[ playerid ] >= VIP_REGULAR && p_VIPWep1{ playerid } != 0 ) GivePlayerWeapon( playerid, p_VIPWep1{ playerid }, 200 );
|
||||
if ( p_VIPLevel[ playerid ] >= VIP_GOLD && p_VIPWep2{ playerid } != 0 ) GivePlayerWeapon( playerid, p_VIPWep2{ playerid }, 200 );
|
||||
if ( p_VIPLevel[ playerid ] >= VIP_PLATINUM && p_VIPWep3{ playerid } != 0 ) GivePlayerWeapon( playerid, p_VIPWep3{ playerid }, 200 );
|
||||
if ( p_VIPLevel[ playerid ] >= VIP_GOLD ) SetPlayerArmour( playerid, 100.0 ); // Free armour on spawn.
|
||||
}
|
||||
|
||||
CallLocalFunction( "SetPlayerRandomSpawn", "d", playerid );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user