23.10.2013, 02:05
i have this code but when i go to the server and click on color my name still white didnt changed
Code:
CMD:color(playerid,pramas[])
{
ShowPlayerDialog(playerid, 12, DIALOG_STYLE_LIST,"Colors","Pink\nGrey","Ok","Close");
return 1;
}
Code:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 12)
{
if(response)
{
switch (listitem)
{
case 0:
{
SetPlayerColor(playerid, 0xFFADADAA);
}
case 1:
{
SetPlayerColor(playerid, 0xBFBFBFAA);
}
}
}
}
return 1;
}

