09.01.2015, 15:55
Bem, Resolveu a Maior parte dos Problemas, Mas Tem Esse Erro Acontecendo : ((4) : error 001: expected token: "{", but found "-integer value-")
Cуdigo Inteiro :
Cуdigo Inteiro :
pawn Код:
#include <a_samp>
#define Dialog_Sex 1
enum DIALOG_STYLE_MSGBOX
{
DIALOG_SEXO
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
ShowPlayerDialog(playerid, Dialog_Sex, DIALOG_STYLE_MSGBOX, "Seu Sexo :", "Qual Seu Sexo ?", "Masculino", "Feminino");
if(dialogid == Dialog_Sex)
{
if(response)
{
AddPlayerClass(192, 1642.0763,-2335.4912,13.5469,353.6410, 0, 0, 0, 0, 0, 0);//Mulher
}
else
{
AddPlayerClass(240, 1642.0763,-2335.4912,13.5469,353.6410, 0, 0, 0, 0, 0, 0);//Homem
}
return 1;
}
return 1;
}