CMD:cd(playerid, params[])
{
new str[512];
strcat(str, "Basic Commands:\n\n");
strcat(str, "/id -- Search player ID using Player part name\n");
strcat(str, "/pm -- Send private message to a player\n");
ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close");
return 1;
}
Under OnDialogResponse
if(dialogid == DIALOG_COMMANDS && response)
{
new str[512];
strcat(str, "Player Commands:\n\n");
strcat(str, "/stats -- Show specified player statistics\n");
strcat(str, "/kill -- Suicide\n");
ShowPlayerDialog(playerid, DIALOG_COMMANDS + 1, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Back");
return 1;
}
if(dialogid == DIALOG_COMMANDS + 1)
{
if(response) //Next Button
{
new str[256];
strcat(str, "Account Commands:\n\n");
strcat(str, "/register -- register for a new account\n");
strcat(str, "/login -- login your registered account\n");
ShowPlayerDialog(playerid, DIALOG_COMMANDS + 2, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Back");
}
else //Back Button
{
new str[512];
strcat(str, "Player Commands:\n\n");
strcat(str, "/stats -- Show specified player statistics\n");
ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close");
}
}
return 1;
}
ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close");
ShowPlayerDialog(playerid, DIALOG_COMMANDS + 1, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close");
Код:
ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close"); Код:
ShowPlayerDialog(playerid, DIALOG_COMMANDS + 1, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close"); |
else //Back Button { new str[512] = "Player Commands:\n\n"; strcat(str, "/stats -- Show specified player statistics\n"); ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close"); }
Try this:
Код:
else //Back Button { new str[512] = "Player Commands:\n\n"; strcat(str, "/stats -- Show specified player statistics\n"); ShowPlayerDialog(playerid, DIALOG_COMMANDS, DIALOG_STYLE_MSGBOX, "Commands", str, ">>", "Close"); } |