26.03.2012, 23:58
Quote:
Your indentation is correct. Maybe that's what the warnings are.
Try this: pawn Код:
|
![Picard](images/smilies/picard2.png)
Added an extra bracket...
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 0)
{
if(response)
{
SendClientMessage(playerid,0x008000FF, "You have clicked 'OK' In the dialog. Remember to /viphelp1 to see the commands again!");
}
else
{
return SendClientMessage(playerid, 0xFF0000FF, "You selected 'Cancel'!");
}
}
return 0;
}