01.10.2013, 04:32
Try this
pawn Код:
public OnPlayerCommandText(playerid,cmdtext[])
{
if(strcmp(cmd,"/poshelp",true) == 0)
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,COLOR_RED,"You must be a rcon admin to use that command!");
ShowPlayerDialog(playerid, MAIN_DIALOG, DIALOG_STYLE_LIST, DIALOG_CAPTION,MAIN_DIALOG_LIST, "Continue", "Cancel"); // this goes up
return 1;
}
return 0;
}