[FilterScript] Weapons Shop - 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: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Weapons Shop (
/showthread.php?tid=528602)
Weapons Shop - Diti1 - 28.07.2014
Hey Boys i made a little Weapons Shop its my first filescript
i hope you like it
I am not going say anything i will Let you Rate
ScreneShoots
Download
http://pastebin.com/i8SDJzgv
0/10
Re: Weapons Shop -
GeekSiMo - 29.07.2014
8/10 Very Good as a Beginner !!
Re: Weapons Shop - Diti1 - 29.07.2014
Thanks
Re: Weapons Shop -
iFarbod - 29.07.2014
Nice one as beginner. Return 0 in OnDialogResponse so you can let dialogs in Gamemodes 'n Other FSes work.
And also a typo. NOT 'buyed' it must be 'bought'.
pawn Code:
public OnDialogResponse(...)
{
switch(dialogid)
{
case WHATEVER_DIALOG:
{
// WHATEVER
return 1;
}
case ANOTHER_DIALOG:
{
// WHATEVER
return 1;
}
}
return 0;
}
Re: Weapons Shop - Diti1 - 29.07.2014
Thanks, i will add