pawn Код:
CMD:level1(playerid,params[])
{
#pragma unused params
if(PlayerInfo[playerid][Level] >= 1)
{
new str[199]
format(str,sizeof(str)," ---=Level 1 V.I.P Commands =---");
strcat(str,"/goto,/getinfo,/weaps,/vr,/ltune,/lhy,/lnos,/lpl,/asay,/ping,/lslowmo,/ltc,/morning,");
strcat(str,sizeof(str),"/adminarea,/reports,/richlist,/miniguns,/saveplace,/gotoplace,\n");
strcat(str,"/saveskin,/useskin,/dontuseskin,/setmytime,/ip,/lconfig\n");
strcat(str,"/afixcar,/afixbiz,/afixh,/afixall\n");
strcat(str,"Use # infront of your messages for Private admin chat!");
ShowPlayerDialog(playerid,DIALOG_ID,DIALOG_STYLE_MSGBOX,"Admin command list level 1",str,"Ok","");
} else return SendClientMessage(playerid,red, "ERROR: You must be an administrator to use this command");
return 1;
}