Code:
Code of: "EditarAccesorio"
My script show the dialog "dEAccesorio_0" but when i choice one of the list, dont show me anything.
((Pawno dont show me a error.))
Code:
case dEAccesorios_0:
{
if(!response) return 0;
if(!InfoJugador[playerid][jAttachModel][listitem]) return Error(playerid,"¡No tienes nada en ese slot!");
EditarAccesorio(playerid,listitem);
SetPVarInt(playerid,"OBJ_EDITAR",listitem);
return 1;
}
Code:
stock EditarAccesorio(playerid,id_accesorio)
{
new Str[140];
A_Format(Str,"Editar personalizadamente\nElejir parte "#CINFO"(%s)\nAjustar posición\nOcultar/Mostrar\nEliminar accesorio",AttachmentBones[InfoJugador[playerid][jAttachBone][id_accesorio]-1]);
Dialog(playerid,dEAccesorios_1,DIALOG_STYLE_LIST,""#CAZUL2"Editar accesorio",Str,"Aceptar","Cancelar");
return 1;
}
My script show the dialog "dEAccesorio_0" but when i choice one of the list, dont show me anything.
((Pawno dont show me a error.))