31.07.2015, 18:43
Try this:
PHP код:
case 2: {
if(playerData[playerid][pVIP] >= 3 && playerData[playerid][pWeaponLic] == 0)
return SendClientMessage(playerid, COLOR_GRAD1, "You do not have a weapon license.");
ShowPlayerDialogEx(playerid, DIALOG_VIP_LOCKER_WEAPON, DIALOG_STYLE_LIST, "VIP - Weapons", "Desert Eagle\n\
Silenced 9mm\n\
Shotgun\n\
Katana\n\
Shovel\n\
Baseball Bat",
"Select",
"Cancel"
);
ShowPlayerDialogEx(playerid, DIALOG_VIP_LOCKER_WEAPON, DIALOG_STYLE_LIST, "VIP - Weapons", "Desert Eagle (15 VIP tokens)\n\
Silenced 9mm (6 VIP tokens)\n\
Shotgun (10 VIP tokens)\n\
Katana (3 VIP tokens)\n\
Shovel (2 VIP tokens)\n\
Baseball Bat (3 VIP tokens)",
"Select",
"Cancel"
);
}