Question

Ввожу /ahelp вылазит окно и там кмд 1-го уровня, нажимаю далее и окно закрывается 

stock ShowPlayerDialogAdminCommands(playerid, lvl = 0)
{
	ShowPlayerDialog
	(
		playerid, DIALOG_AHELP, DIALOG_STYLE_MSGBOX,
		"{FFCC00}Команды администратирования",
		help_cmds_adm_list[lvl][ADM_INFO],
		"Далее", "Закрыть"
	);
	return 1;
}

 

Share this post


Link to post

3 answers to this question

  • 0

Дайте саму команду. 

Share this post


Link to post
  • 0

@PRоFeSSoR 

CMD:ahelp(playerid)
{
    if(PI[playerid][pAdmin] < 1) return 0;
    else if(AdminLogged[playerid] == false) return SCM(playerid, -1, "Вы не авторизованы как администратор");

	pPressed[playerid] = 0;

	ShowPlayerDialogAdminCommands(playerid, 0);

	return 1;
}

 

Share this post


Link to post
  • 0

@archiboy6, обработку диалога DIALOG_AHELP покажите (в OnDialogResponce или DLG при наличии командного процессора).

Share this post


Link to post
Guest
This topic is now closed to further replies.
Sign in to follow this  
Followers 0