SA-MP Forums Archive
Small Question - 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: Small Question (/showthread.php?tid=257191)



Small Question - und3rcore - 24.05.2011

Solved


Re: Small Question - und3rcore - 24.05.2011

Bump!


Re : Small Question - Naruto_Emilio - 24.05.2011

Give me the define of your Admin system like
IsPAdminLevel=> 5
Like this Give it to me and i will help ya


Re: Small Question - CrazyBlob - 24.05.2011

show us ur /setlevel cmd


Re: Small Question - Snipa - 24.05.2011

pawn Код:
CMD:admins(playerid,params[])
{
    foreach(Player, i)
    {
        if(Level[i] < Level[playerid]) //Change the varibles to yours..
        {
            new string[50],name[24];
            GetPlayerName(i,name,24);
            format(string,50,"%s",name);
            SendClientMessage(playerid,0x000080AA,string);
        }
    }
    return 1;
}