11.01.2012, 19:40
Try changing
to
pawn Код:
case 4: // The third item listed
{
if(IsPlayerVipMember(playerid))
{
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_LIST, "Vip Weapons", "MicroSMG-Sawnoff-Sniper\nTec9-Sawnoff-Sniper\nCombatShotgun-Sawnoff-Knife", "Choose", "No Weaps");
}
else SendClientMessage(playerid, COLOR_WHITE, "ERROR: Your not a Vip Member!");
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Select your Weapons", "SMG-AK47-Grenades\nTec9-M4-Chainsaw\nMicroSMG-Shotgun-Knife\nAdmins\nVip's", "Choose", "No Weaps");
}
pawn Код:
case 4: // The third item listed
{
if(IsPlayerVipMember(playerid))
{
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_LIST, "Vip Weapons", "MicroSMG-Sawnoff-Sniper\nTec9-Sawnoff-Sniper\nCombatShotgun-Sawnoff-Knife", "Choose", "No Weaps");
}
else
{
SendClientMessage(playerid, COLOR_WHITE, "ERROR: Your not a Vip Member!");
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Select your Weapons", "SMG-AK47-Grenades\nTec9-M4-Chainsaw\nMicroSMG-Shotgun-Knife\nAdmins\nVip's", "Choose", "No Weaps");
}
}