28.06.2014, 22:49
Comece a tabular seus cуdigos, isso й o bбsico dos bбsicos.
PHP код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_CORES)
{
if(response)
{
if(listitem == 0)
{
SetPlayerColor(playerid, COR_VERMELHA);
}
if(listitem == 1)
{
SetPlayerColor(playerid, COR_VERDE);
}
if(listitem == 2)
{
SetPlayerColor(playerid, COR_AMARELA);
}
if(listitem == 3)
{
SetPlayerColor(playerid, COR_AZUL);
}
if(listitem == 4)
{
SetPlayerColor(playerid, COR_LARANJA);
}
if(listitem == 5)
{
SetPlayerColor(playerid, COR_ROXO);
}
if(listitem == 6)
{
SetPlayerColor(playerid, COR_AZULM);
}
if(listitem == 7)
{
SetPlayerColor(playerid, COR_ROSA);
}
if(listitem == 8)
{
SetPlayerColor(playerid, COR_CINZA);
}
if(listitem == 9)
{
SetPlayerColor(playerid, COR_MARROM);
}
if(listitem == 10)
{
SetPlayerColor(playerid, COR_BRANCA);
}
if(listitem == 11)
{
SetPlayerColor(playerid, COR_AZULCLARO);
}
if(listitem == 12)
{
SetPlayerColor(playerid, COR_VERDEES);
}
}
return 1;
}
return 1;
}