SA-MP Forums Archive
OnDialogResponse Problem - 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: OnDialogResponse Problem (/showthread.php?tid=250173)



OnDialogResponse Problem - Hoss - 22.04.2011

[Fixed].


Re: OnDialogResponse Problem - captainjohn - 22.04.2011

Код:
*:\*************\gamemodes\******.pwn16786) : error 001: expected token: ";", but found "-identifier-"
You are missing a
Код:
;
Which line is 16786?

Replace
pawn Код:
SendClientMessage(playerid,COLOR_WHITE", "You have received a Deagle with 150 Ammo from SFPD");
with
pawn Код:
SendClientMessage(playerid,COLOR_WHITE, "You have received a Deagle with 150 Ammo from SFPD");
If you didn't notice, I deleted " after COLOR_WHITE.


Re: OnDialogResponse Problem - aircombat - 22.04.2011

replace : SendClientMessage(playerid,COLOR_WHITE", "You have received a Deagle with 150 Ammo from SFPD");
with :
SendClientMessage(playerid,COLOR_WHITE, "You have received a Deagle with 150 Ammo from SFPD");


Re: OnDialogResponse Problem - captainjohn - 22.04.2011

nevermind he beat me^