View Single Post
Blizzard_87
Veteran Member
Join Date: Oct 2012
Old 05-23-2013 , 23:44   Re: Simple Late Spawn Blocker
Reply With Quote #3

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;

thanks. updated.
__________________
Blizzard_87 is offline