Back command help
#5

Show me both, /afk and the line where it has IsPlayerAfk[MAX_PLAYERS];

And here's the fixed command:
pawn Код:
CMD:back(playerid,params[])
{
    if(IsPlayerAfk[playerid] == 0) return SendClientMessage(playerid, -1, "{FF0000}[SERVER]{ffffff}:You are not AFK");
    else
    {
        TogglePlayerControllable(playerid, 1);
        IsPlayerAfk[playerid] == 0;
    }
    return 1;
}
pawn Код:
CMD:afk(playerid, params[])
{
    if(IsPlayerAfk[playerid] == 0)
    {
        TogglePlayerControllable(playerid, 0);
        GameTextForPlayer(playerid, "~g~AFK",5000,3);
                IsPlayerAfk[playerid] = 1;
    }
    else
    {  
        SendClientMessage(playerid, -1, "You are already AFK");
    }
    return 1;
}
Why don't use put brackets? I've noticed that in all of your scripting help topics.
Reply


Messages In This Thread
Back command help - by YanLanger - 11.10.2014, 05:45
Re: Back command help - by GwENiko - 11.10.2014, 05:56
Re: Back command help - by YanLanger - 11.10.2014, 05:57
Re: Back command help - by Shaktimaan - 11.10.2014, 05:57
Re: Back command help - by Stinged - 11.10.2014, 05:59
Re: Back command help - by GwENiko - 11.10.2014, 06:00
Re: Back command help - by YanLanger - 11.10.2014, 06:00
Re: Back command help - by Shaktimaan - 11.10.2014, 06:00
Re: Back command help - by GwENiko - 11.10.2014, 06:02
Re: Back command help - by Stinged - 11.10.2014, 06:03

Forum Jump:


Users browsing this thread: 2 Guest(s)