SA-MP Forums Archive
Help! - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help! (/showthread.php?tid=222581)



Help! - [MKD]Max - 07.02.2011

hello guys i was to tell you i need to make the list for the player how get mute freeze jail so for exampel

when i jail some and jail alot then maby i will forget wich ID he was so i need command thats show me who is in jail! or who is muted or freezed


Re: Help! - [MKD]Max - 07.02.2011

Bump i realy need help guys!


Re: Help! - Stigg - 07.02.2011

Show your jail comm's.

Peace...


Re: Help! - Ironboy500[TW] - 07.02.2011

Something like this?
Код:
if(strcmp(cmd, "/freezedplayers", true) == 0)
{
    SendClientMessage(playerid, COLOR, "Freezed Players!");
    for(new i; i < MAX_PLAYERS; i++)
    {
        if(IsFreezed[i])
        {
           new string[60];
           format(string, sizeof(string), "Freezed ID %d", i);
           SendClientMessage(playerid, COLOR, string);
        }
    }
    return 1;
}



Re: Help! - [MKD]Max - 07.02.2011

Thanks you