19.08.2016, 12:06
Quote:
There's a huge possibility that I'm wrong but I think killing timers under OnGameModeExit is useless because everything gets killed by that point.
|
Alot of person still dont even destory pickups when the gamemodeends..
PHP Code:
new PC;
public OnGameModeInit()
{
PC = CreatePickup(1210,1,0.0,0.0,0.0,0);
return 1;
}
public OnGameModeExit()
{
DestroyPickup(PC);
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
DestroyPickup(PC);//x?.?
return 1;
}