12.08.2010, 08:45
After the IF is a {-bracket missin.
Код:
if(!strcmp(cmdtext, "/buydrink", true))
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 2130.0635,-1761.0878,13.5625,172.1949))
{ // this was missing...
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "What drink do you want?", "Sprunk ($1)\nBeer ($2)\nWine ($3)", "Purchase", "Cancel");
}
else
{
SendClientMessage(playerid,red,"You are not near the liquor store!");
}
return 1;
}

