SA-MP Forums Archive
MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! (/showthread.php?tid=262018)



MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! - Iphone1234g - 16.06.2011

How to change this in a msg dialog box i add but get many errors plz add this like this
Код:
Flight owner
Loading Piont
Droping Point
Money:
Mints:
Код:
	
Reward = 1000 + random(2000);
	GetPlayerName(playerid, szName, sizeof(szName));
	format(szString, sizeof(szString), "%s has completed a Flight from %s to %s in %d minutes and received $%d", szName, FirstAPName[playerid], SecondAPName[playerid], GetPVarInt(playerid, "WorkMins"),WorkTimer[playerid], Reward);
 	SendClientMessageToAll(COLOR_WHITE, szString);



Re: MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! - Raimis_R - 16.06.2011

pawn Код:
Reward = 1000 + random(2000);
    GetPlayerName(playerid, szName, sizeof(szName));
    format(szString, sizeof(szString), "%s has completed a Flight from %s to %s in %d minutes and received $%d", szName, FirstAPName[playerid], SecondAPName[playerid], GetPVarInt(playerid, "WorkMins"),WorkTimer[playerid], Reward);
    ShowPlayerDialog(playerid,9999,DIALOG_STYLE_MSGBOX,"Flight",szString,"Okey","");



Re: MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! - abubaker98 - 16.06.2011

DELETED


Re: MESSAGE DIALOG BOX SIMPLE PLZ HELP :(! - Iphone1234g - 16.06.2011

thanks for help its working!