View Single Post
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 11-13-2020 , 17:10   Re: Invalid Timer Handle crash
Reply With Quote #5

Quote:
Originally Posted by GsiX View Post
@Bacardi is OnMapEnd() guaranteed to fire every time and safe to CloseHandle() there or should i just do it on OnMapStart()?
you can test it by yourself

PHP Code:

public void OnMapStart()
{
    
PrintToServer("-- OnMapStart");
}

public 
void OnMapEnd()
{
    
PrintToServer("-- OnMapEnd");

Bacardi is offline