14.11.2015, 20:21
(
Последний раз редактировалось AIped; 14.11.2015 в 20:23.
Причина: edit
)
i cant see why theres something wrong with that part.
But the next step would be disabling SMALL parts of that code.
EDIT: Try this;
or maybe you have the same dialogid in some other script ?
But the next step would be disabling SMALL parts of that code.
EDIT: Try this;
pawn Код:
if(pickupid == GShop)
{
if(PlayerInfo[playerid][pMember] == 0) return ShowPlayerDialog(playerid, 518, DIALOG_STYLE_MSGBOX, "Shop", "You cannot buy anything in this shop.", "Close", "");
if(IsCop[playerid] == 1) return ShowPlayerDialog(playerid, 519, DIALOG_STYLE_MSGBOX, "Shop", "You cannot buy anything in this shop.", "Close", "");
else
{
ShowPlayerDialog(playerid, 520, DIALOG_STYLE_LIST, "Shop", "Mask - x1 - $750\nSpray - 1500 - $250\nBaseball - x1 -$600");
}
return 1;
}