Quote:
Originally Posted by Grey83
PHP Code:
public Action Event_RoundEnd(Event event, const char[] name, bool dontBroadcast)
{
...
delete g_Timer_NukePlayers; // Line 58
}
public Action Timer_NukePlayers(Handle timer, int client)
{
...
return Plugin_Handled;
}
==>
PHP Code:
public Action Event_RoundEnd(Event event, const char[] name, bool dontBroadcast)
{
...
if(g_Timer_NukePlayers) delete g_Timer_NukePlayers; // Line 58
}
public Action Timer_NukePlayers(Handle timer, int client)
{
...
g_Timer_NukePlayers = null;
return Plugin_Stop;
}
|
Awwwww Your Awesome
That fixed my issue now thank you very much

> 0 Errors and it reset when round ends
Quote:
Originally Posted by Grey83
This will work
|
I tested it, countdown was not working and doesn't slay you after time passes
Shouldn't be TIMER_REPEAT > To make countdown work???