Help with toys bug.
#1

Okay here's what.You know Goldvip room.When i type /buytoys i get toys cords etc.But when added paltinum vip room with platvip toys.It doesn't show the toys and the cords edit.Only shows Welcome to Platinum Vip Toys Accept or Delicne something like this.How to show the same dialog at gvip toys but with other toys.Hope you understand me.
Reply
#2

Show the code
Reply
#3

CMDlattoys(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 4, 912.1011,1430.1176,-81.1762))
{
if(PlayerInfo[playerid][pDonateRank] < 4)
{
SendClientMessageEx(playerid, COLOR_WHITE, "* You are not a Platinum VIP");
}
else
{
ShowPlayerDialog(playerid, BUYTOYSPLAT, DIALOG_STYLE_MSGBOX, "Toy Store", "Welcome to the Platinum VIP Toy store! Here you can buy accessories to attach to your character.\n\nFirst, we will choose a slot to store the toy in.","Continue", "Cancel");
}
}
else
{
SendClientMessageEx( playerid, COLOR_WHITE, " You are not in the Platinum VIP Toys store !" );
}
return 1;
}
Reply
#4

Try this
pawn Код:
CMD:plattoys(playerid, params[])
{
    if(IsPlayerInRangeOfPoint(playerid, 4, 912.1011,1430.1176,-81.1762))
    {
        if(PlayerInfo[playerid][pDonateRank] < 4) return SendClientMessageEx(playerid, COLOR_WHITE, "* You are not a Platinum VIP");
        ShowPlayerDialog(playerid, BUYTOYSPLAT, DIALOG_STYLE_MSGBOX, "Toy Store", "Welcome to the Platinum VIP Toy store! Here you can buy accessories to attach to your character.\n\nFirst, we will choose a slot to store the toy in.","Continue", "Cancel");

    }
    else
    {
    SendClientMessageEx( playerid, COLOR_WHITE, " You are not in the Platinum VIP Toys store !" );
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)