ShowPlayerDialog bug!
#1

i have some bug about ShowPlayerDialog

after i go to the checkpoint,

it show

pawn Код:
ShowPlayerDialog(playerid,1946,DIALOG_STYLE_MSGBOX,"{FFA1A1}Mapping Center","{F81414}You Was bought License To Mapping :D" ,"OKAY","");



and after i go to the checkpoint again



but it show

pawn Код:
ShowPlayerDialog(playerid,1946,DIALOG_STYLE_MSGBOX,"{FFA1A1}Mapping Center","{F81414}You Was bought License To Mapping :D:" ,"OKAY","");
i want it show
pawn Код:
ShowPlayerDialog(playerid,1946,DIALOG_STYLE_MSGBOX,"{FFA1A1}Mapping Center","{F81414}you already bought license to mapping, use /co to mapping D:" ,"OKAY","");


Code

pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 1.0, 1019.2029,2376.1060,10.8203))
 {
  if(PlayerMap[playerid] == 0)
    {
    ShowPlayerDialog(playerid,1946,DIALOG_STYLE_MSGBOX,"{FFA1A1}Mapping Center","{F81414}you already bought license to mapping, use /co to mapping D:" ,"OKAY","");
    }
    ShowPlayerDialog(playerid,1945,DIALOG_STYLE_MSGBOX,"{FFA1A1}Mapping Center","{F81414}You Was bought License To Mapping :D" ,"OKAY","");
    GivePlayerMoney(playerid, -250000);
    PlayerMap[playerid] = 1;
    return 1;
   }
  return 0;
}
Reply


Messages In This Thread
ShowPlayerDialog bug! - by Guest123 - 01.05.2013, 11:42
Re: ShowPlayerDialog bug! - by SimpalK - 01.05.2013, 11:45
Re: ShowPlayerDialog bug! - by Guest123 - 01.05.2013, 11:59
Re: ShowPlayerDialog bug! - by Slix_ - 01.05.2013, 12:01
Re: ShowPlayerDialog bug! - by Guest123 - 01.05.2013, 12:03
Re: ShowPlayerDialog bug! - by Guest123 - 01.05.2013, 12:08
Re: ShowPlayerDialog bug! - by Slix_ - 01.05.2013, 12:14

Forum Jump:


Users browsing this thread: 1 Guest(s)