I need few thang's
#4

You can make a command to stop reports by doing something like this:

Using a bool we would have this some where in the script:

pawn Код:
new bool:AllowReports = true;
And then here we would toggle it:

pawn Код:
COMMAND:togglereports(playerid, params[])
{
    // Put your admin check here

    if(AllowReports == true)
    {
        AllowReports = false;
        SendClientMessageToAll(COLOR_RED, "Reports are now disabled");
        return 1;
    }
   
    AllowReports = true;
    SendClientMessageToAll(COLOR_RED, "Reports are now enabled");
    return 1;
}
Then inside the report command:

pawn Код:
COMMAND:report(playerid, params[])
{
    // Put this check at the start
   
    if(AllowReports == false)
    {
        return SendClientMessage(playerid, COLOR_RED, "Reports are currently disabled.");
    }
   
    // Rest of the report stuff here
Reply


Messages In This Thread
I need few thang's - by yarin0600 - 29.10.2012, 18:11
Re: I need few thang's - by cluckintucker - 29.10.2012, 18:22
Re: I need few thang's - by yarin0600 - 29.10.2012, 18:29
Re: I need few thang's - by czel - 29.10.2012, 18:58
Re: I need few thang's - by Glint - 29.10.2012, 19:16
Re: I need few thang's - by yarin0600 - 29.10.2012, 19:16
Re: I need few thang's - by czel - 29.10.2012, 19:21
Re: I need few thang's - by RedJohn - 29.10.2012, 19:21

Forum Jump:


Users browsing this thread: 1 Guest(s)