[Ajuda] Sistema de Skin por Sexo
#1

Eu Estou Criando uma GM do Zero e Gostaria de pedir ajuda Numa Coisa Simples mas Que estб me Deixando Louco.
Eu Fiz Esse Sistema Para Que Quando um player se Registar ele Escolha Seu Sexo e uma Skin Seja Setada para Ele. Mas Eu Nгo Consigo Entender o Erro "warning 213: tag mismatch"

pawn Код:
{
    ShowPlayerDialog(playerid, Dialog_Sex, DIALOG_MSG_BOX, "Seu Sexo :", "Qual Seu Sexo ?", "Masculino", "Feminino");
    if(dialogid == DIALOG_MSG_BOX)
        {
            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;
        }
}
Qualquer Ajuda Seria Boa.
Obrigado Desde Jб, Gustavo.
Reply
#2

Significa que nгo esta usando corretamente ou estб faltando os parвmetros de alguma funзгo...

DIALOG_MSG_BOX > O certo seria DIALOG_STYLE_MSGBOX
Reply
#3

Qual a linha?
Reply
#4

Quote:
Originally Posted by Bruno13
Посмотреть сообщение
Significa que nгo esta usando corretamente ou estб faltando os parвmetros de alguma funзгo...

DIALOG_MSG_BOX > O certo seria DIALOG_STYLE_BOX
Й DIALOG_STYLE_MSGBOX.

https://sampwiki.blast.hk/wiki/Dialog_Styles
Reply
#5

Quote:
Originally Posted by FStralioti
Посмотреть сообщение
Qual a linha?
A qual esta a mostrar o DIALOG...
pawn Код:
ShowPlayerDialog(playerid, Dialog_Sex, DIALOG_MSG_BOX, "Seu Sexo :", "Qual Seu Sexo ?", "Masculino", "Feminino");
E tambйm, reveja esta condiзгo, nгo seria Dialog_Sex?
pawn Код:
if(dialogid == DIALOG_MSG_BOX)...
Quote:
Originally Posted by MultiKill
Посмотреть сообщение
Ah sim, obg por alertar, desatenзгo minha...
Reply
#6

Bem, Resolveu a Maior parte dos Problemas, Mas Tem Esse Erro Acontecendo : ((4) : error 001: expected token: "{", but found "-integer value-")

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;
}
Reply
#7

Jб Resolvi. Obrigado a Todos !
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)