[DUV] Dialog
#1

Olб, sou iniciante e tenho algumas dъvidas.

Para aprender a codar estou fazendo um GM de TDM, nesse GM eu fiz Check Point nas HQ's das Gangs, nesse Check Point abre uma caixa de dialogo ontem hб 3 opзхes, 'Armas, vida, colete'
Atй ai tudo bem..

fui inventar de fazer um comando /ajuda onde apareceria 'Comandos, Territуrio, Dinheiro'
Faзo tudo certo, Mas quando eu digito /ajuda in-game ele apenas aparece a caixa de dialogo escrito 'Comandos, Territуrio, Dinheiro' Mas quando eu seleciono qualquer um nгo funciona

public OnPlayerEnterCheckpoint(playerid)
Код:
public OnPlayerEnterCheckpoint(playerid)
{
	if(CPS_IsPlayerInCheckpoint(playerid, cpgroove))
	{
	SendClientMessage(playerid, AZUL, "Selecione os seus equipamentos");
	ShowPlayerDialog(playerid,DIALOG_1,DIALOG_STYLE_LIST,"Selecione o que vocк deseja","Armas \nVida \nColete","Pronto","Cancelar");
	}
	if(CPS_IsPlayerInCheckpoint(playerid, cpaztecas))
	{
	SendClientMessage(playerid, AZUL, "Selecione os seus equipamentos");
	ShowPlayerDialog(playerid,DIALOG_1,DIALOG_STYLE_LIST,"Selecione o que vocк deseja","Armas \nVida \nColete","Pronto","Cancelar");
	}
	if(CPS_IsPlayerInCheckpoint(playerid, cpvagos))
	{
	SendClientMessage(playerid, AZUL, "Selecione os seus equipamentos");
	ShowPlayerDialog(playerid,DIALOG_1,DIALOG_STYLE_LIST,"Selecione o que vocк deseja","Armas \nVida \nColete","Pronto","Cancelar");
	}
	if(CPS_IsPlayerInCheckpoint(playerid, cpcv))
	{
	SendClientMessage(playerid, AZUL, "Selecione os seus equipamentos");
	ShowPlayerDialog(playerid,DIALOG_1,DIALOG_STYLE_LIST,"Selecione o que vocк deseja","Armas \nVida \nColete","Pronto","Cancelar");
	}
	if(CPS_IsPlayerInCheckpoint(playerid, cppm))
	{
	SendClientMessage(playerid, AZUL, "Selecione os seus equipamentos");
	ShowPlayerDialog(playerid,DIALOG_1,DIALOG_STYLE_LIST,"Selecione o que vocк deseja","Armas \nVida \nColete","Pronto","Cancelar");
	}
	return 1;
	}
Comando /ajuda
Код:
	if(strcmp(cmd, "/ajuda", true) == 0)
	{
	ShowPlayerDialog(playerid,DIALOG_2,DIALOG_STYLE_LIST,"Ajuda","Comandos \nTerritуrio \nDinheiro","Confirmar","Cancelar");
  }
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
 if(dialogid == DIALOG_1)
 {
 if(response)
 {
 if(listitem == 0)
 {
 GivePlayerWeapon(playerid, 24, 999);
 GivePlayerWeapon(playerid, 16, 1);
 GivePlayerWeapon(playerid, 34, 999);
 GivePlayerWeapon(playerid, 31, 999);
 GivePlayerWeapon(playerid, 32, 999);
 }
 if(listitem == 1)
 {
 SetPlayerHealth(playerid, 100);
 }
 if(listitem == 2)
 {
 SetPlayerArmour(playerid, 100);
 }
 }

 if(dialogid == DIALOG_2)
 {
 if(response)
 {
 if(listitem == 0)
 ShowPlayerDialog(playerid,2,DIALOG_STYLE_LIST,"Comandos","/pg Abre portao da Groove \n/pa Abre portao dos Aztecas \n/pc Abre portao do Comando Vermelho \n/pv Abre portao dos Vagos \n/pm Abre portao da PM","Pronto","Cancelar");
 }
 if(listitem == 1)
 ShowPlayerDialog(playerid,2,DIALOG_STYLE_LIST,"Territorio","Em desenvolvimento","Pronto","Cancelar");
 }
 if(listitem ==2)
 ShowPlayerDialog(playerid,2,DIALOG_STYLE_LIST,"Dinheiro","Em desenvolvimento","Pronto","Cancelar");
 }
 }
Outro problema que ocorre й que quando eu vou no jogo e vou hб um Check Point, seleciono a opзгo 'Colete' eu ganho o colete mas abre uma caixa de dialogo com o comando /ajuda 'Dinheiro'

Como jб disse, sou novo, estou aprendendo e esse й o meu primeiro GM, estou criando ele do zero, nгo estou editando.
Sera que alguйm pode me ajudar?


Obrigado.

PS: Se postei na бrea errada desculpe-me, sou novo no fуrum tambйm.
Reply


Messages In This Thread
[DUV] Dialog - by Gil_Henriquee - 24.05.2010, 01:44
Re: [DUV] Dialog - by SuB_ZeRo0_ - 24.05.2010, 01:48
Re: [DUV] Dialog - by Gil_Henriquee - 24.05.2010, 01:57
Re: [DUV] Dialog - by SuB_ZeRo0_ - 24.05.2010, 02:09
Re: [DUV] Dialog - by Gil_Henriquee - 24.05.2010, 02:17
Re: [DUV] Dialog - by SuB_ZeRo0_ - 24.05.2010, 02:20

Forum Jump:


Users browsing this thread: 1 Guest(s)