22.01.2014, 03:57
it works but it is possible to make /acmds for all admins? i mean i added this:
Like : if level 1 admin types: /acmds > he will only see the level 1 sendclientmessage.
same thing for all ranks. i like if level 2 admin types /acmds he will only see the level 2 commands..
Код:
CMD:acmds2(playerid,params[])
{
if (APlayerData[playerid][LoggedIn] == true)
{
MY SENDCLIENTMESSAGES I DONT WANT TO SHOW IT
}
}
return 1;
}
CMD:acmds3(playerid,params[])
{
if (APlayerData[playerid][LoggedIn] == true)
{
if (APlayerData[playerid][PlayerLevel] >= 3)
{
MY SENDCLIENTMESSAGES I DONT WANT TO SHOW IT
}
}
return 1;
}
CMD:acmds4(playerid,params[])
{
if (APlayerData[playerid][LoggedIn] == true)
{
if (APlayerData[playerid][PlayerLevel] >= 4)
{
MY SENDCLIENTMESSAGES I DONT WANT TO SHOW IT
}
}
return 1;
}
same thing for all ranks. i like if level 2 admin types /acmds he will only see the level 2 commands..

