SA-MP Forums Archive
Dialog 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)
+--- Thread: Dialog problem (/showthread.php?tid=417767)



Dialog problem - conor565 - 22.02.2013

When I run both my radio filterscript and my GPS filterscript my radio doesn't work as when you select a station it the dialog it doesn't play it, but if you unload the gps fs it works....


Re: Dialog problem - Gamer_007 - 22.02.2013

Show us the code.Btw change the callback of ur dialog box from

pawn Код:
return 1; to return 0;
Example:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
return 0;
}



Re: Dialog problem - conor565 - 22.02.2013

Quote:
Originally Posted by Gamer_007
Посмотреть сообщение
Show us the code.Btw change the callback of ur dialog box from

pawn Код:
return 1; to return 0;
Example:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
return 0;
}
Which one the radio fs or the GPS.