SA-MP Forums Archive
how make /helpers for see list of helpers online - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: how make /helpers for see list of helpers online (/showthread.php?tid=520080)



how make /helpers for see list of helpers online - kinggta - 17.06.2014

hello all,
I need some help for make cmd /helpers,who can help me?


Re: how make /helpers for see list of helpers online - RenovanZ - 17.06.2014

pawn Код:
CMD:helpers(playerid, params[])
{
    new string[64], name[MAX_PLAYER_NAME];
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(PlayerInfo[i][pHelpers] >= 1) //just example, change this based on your enum
            {
                GetPlayerName(i, name, MAX_PLAYER_NAME);
                format(string, sizeof(string), "Helper %s", name);
                SendClientMessage(playerid, -1, string);
            }
        }
    }
    return 1;
}