View Single Post
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 05-24-2013 , 13:46   Re: Simple Late Spawn Blocker
Reply With Quote #7

Quote:
Originally Posted by tonykaram1993 View Post
Since you are only setting g_bBlockLateSpawn on only two areas, better to do:
PHP Code:
public Event_RoundStart() {
    if( !
g_bBlockLateSpawn g_bBlockLateSpawn true;
}

public 
Event_RoundEnd() {
    if( 
g_bBlockLateSpawn g_bBlockLateSpawn false;



PHP Code:
public Event_RoundStart() {
    
g_bBlockLateSpawn true;
}

public 
Event_RoundEnd() {
    
g_bBlockLateSpawn false;

Or not
__________________
Jhob94 is offline