02.05.2018, 04:26
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/help", cmdtext, true) == 0)
{
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_LIST, "Help Menu", "Commands \nFAQs \nTutorials \nCommunity", "Select", "Cancel");
}
if (strcmp("/commands", cmdtext, true)== 1)
{
ShowPlayerDialog(playerid, 13, DIALOG_STYLE_LIST, "Commands", "General Commands \nChat Commands \nAnimation Commands \nGroup Commands \nPremium Commands\
\nHelper Commands \nStaff Commands", "Select", "Cancel");
}
if (strcmp("/cmds", cmdtext, true) == 2)
{
ShowPlayerDialog(playerid, 21, DIALOG_STYLE_LIST, "Commands", "General Commands \nChat Commands \nAnimation Commands \nGroup Commands \nPremium Commands\
\nHelper Commands \nStaff Commands", "Select", "Cancel");
return 1;
}
return 0;
}


