26.07.2010, 16:07
I tried to do not have to choose something from the dialogue but failed here is the code
I mean I do not have to choose something from the option you can not click on non
Dialogue is the list
pawn Код:
if(dialogid == JAZIK_LIST && response)
{
if (response == 1)
{
IgracInfo[playerid][Jezik] =1;
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Вашиот официјален јазик е Македонски.");
SetTimerEx("login", 0 * 1000, 0, "%i", playerid);
}
if (response == 2)
{
IgracInfo[playerid][Jezik] =2;
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Vasi oficijalni jezik je Croatian.");
SetTimerEx("login", 0 * 1000, 0, "%i", playerid);
}
if (response == 3)
{
IgracInfo[playerid][Jezik] =3;
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Your official language is English.");
SetTimerEx("login", 0 * 1000, 0, "%i", playerid);
}
else ShowPlayerDialog(playerid,JAZIK_LIST,DIALOG_STYLE_LIST,"Јазик - Jezik - Language","Македонски\nCroatian\nEnglish","OK","Cancel");
}
Dialogue is the list