[HELP]Need Help with Menus - 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: [HELP]Need Help with Menus (
/showthread.php?tid=276842)
[HELP]Need Help with Menus -
Tigerbeast11 - 15.08.2011
I have created a Menu like this:
pawn Code:
Shop = CreateMenu("Shop",1,200.0,100.0,150.0);
AddMenuItem(Shop,1,"Vehicles");
AddMenuItem(Shop,1,"Weapons");
AddMenuItem(Shop,1,"Cookies");
But I can't see the items on screen. This is what I see in-game:
Please help me!
Re: [HELP]Need Help with Menus -
WoodPecker - 15.08.2011
Here is an example:
PHP Code:
CluckinBell = CreateMenu("Cluckin' Bell", 2, 125, 150, 300);
AddMenuItem(CluckinBell, 0, "Chicken Nuggets");
AddMenuItem(CluckinBell, 1, "$3");
AddMenuItem(CluckinBell, 0, "Chicken Wing");
AddMenuItem(CluckinBell, 1, "$6");
AddMenuItem(CluckinBell, 0, "Crisp Chicken");
AddMenuItem(CluckinBell, 1, "$9");
Re: [HELP]Need Help with Menus -
Tigerbeast11 - 15.08.2011
Thanks, I managed to fix it