Ayuda, registro en dialog
#1

Hola, quiero ver si me dicen como puedo poner un sistema de registro en dialog, pero registro por ejemplo: Edad, Origen, Caminar. Se los agradezco
Reply
#2

https://sampforum.blast.hk/showthread.php?tid=273088
Reply
#3

Quote:
Originally Posted by Bu11Sh0t
Посмотреть сообщение
Pero registro de edad, sexo, esque tengo un problema que no me guarda la edad cuando se escribe en el dialog
Quote:

if(dialogid == DATOS)//Especificamos el id del dialogo.
{
if(listitem == 0)
{
SendClientMessage(playerid, COLOR_RED2, "Masculino");
SetPlayerSkin(playerid, 26);
PlayerInfo[playerid][pChar] = 26;
Freezed[playerid] = 1;
ShowPlayerDialog(playerid, DATOS1, DIALOG_STYLE_INPUT, "Edad", "Escribe Tu Edad", "Aceptar", "");
}
if(listitem == 1)
{
SendClientMessage(playerid, COLOR_RED2, "Femenino");
SetPlayerSkin(playerid, 193);
PlayerInfo[playerid][pChar] = 193;
Freezed[playerid] = 1;
ShowPlayerDialog(playerid, DATOS1, DIALOG_STYLE_INPUT, "Edad", "Escribe Tu Edad", "Aceptar", "");
}
return 1;
}
if(dialogid == DATOS1)
{
if(strlen(inputtext))
{
new tmp[256];
new idx;
tmp = strtok(inputtext, idx);
if(!strlen(tmp))
format(string, sizeof(string), "Tu Edad Es %d", pAge);
SendClientMessage(playerid, COLOR_WHITE, string);
ShowPlayerDialog(playerid,SIST_CAMINAR,DIALOG_STYL E_LIST,"Elije Tu forma de Caminar","Caminar Normal\nCaminar Pandillero\nCaminar Gatillero\nCaminar Criminal\nCaminar viejo\nCaminar Viejo Gordo\nCaminar Femenino\nCaminar Gay\nCaminar Borracho","Aceptar","Cancelar");
}
return 1;
}

Reply
#4

Ya lo solucione, gracias Bu11Sh0t por aportar
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)