18.09.2009, 20:45
I have a DM server, but when the GM exits, I want it to do this:
VIA a filterscript, since my GMs rotate between eachother, and I don't want to add it to all of them, (too much work)
So I have a filterscript that will do it.
Now, on the gamemode exit, it looks like this
And I get ---> error 017: undefined symbol "playerid"
So how can I get this working?
pawn Код:
GameTextForPlayer(playerid,"~r~Game Over~n~Loading next map...",11000,5);
So I have a filterscript that will do it.
Now, on the gamemode exit, it looks like this
pawn Код:
public OnGameModeExit()
{
GameTextForPlayer(playerid,"~r~Game Over~n~Loading next map...",11000,5);
return 1;
}
So how can I get this working?