A good GMX, without the use of exit.
#6

Nice script, but you could do
pawn Код:
#include <a_samp>

main(){}

public OnGameModeInit()
{
    SendRconCommand("exit");
    return 1;
}

public OnGameModeExit()
{
    return 1;
}
or even make a command (ZCMD):
pawn Код:
CMD:crashserver(playerid, params[]){
    if(IsPlayerAdmin(playerid)){
        SendRconCommand("exit");
    }
    return 1;
}
Reply


Messages In This Thread
A good GMX, without the use of exit. - by Austin - 18.02.2011, 01:14
Re: A good GMX, without the use of exit. - by California - 18.02.2011, 01:17
Re: A good GMX, without the use of exit. - by Austin - 18.02.2011, 01:19
Re: A good GMX, without the use of exit. - by California - 18.02.2011, 01:22
Re: A good GMX, without the use of exit. - by Whizion - 16.05.2011, 16:21
Re: A good GMX, without the use of exit. - by NRJ53 - 16.05.2011, 17:13

Forum Jump:


Users browsing this thread: 1 Guest(s)