Raised This Month: $32 Target: $400
 8% 

[TOOL] AMXX Menu Generator v1.3


Post New Thread Reply   
 
Thread Tools Display Modes
connoisseur
Senior Member
Join Date: Jan 2012
Old 04-26-2014 , 07:07   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #51

Cool program.
It would be great if you could make it open-source though, many more things can be added in this.
connoisseur is offline
EpicKiller
Senior Member
Join Date: Jun 2014
Location: Constanta, Romania
Old 06-23-2014 , 03:54   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #52

I have finally tested it. It's cool. Nice, user-friendly interface, does it's job, does it good. Very nice, v3x! Thank you!
EpicKiller is offline
Send a message via Yahoo to EpicKiller Send a message via Skype™ to EpicKiller
popeye10
Senior Member
Join Date: May 2014
Location: Navi Mumbai (India)
Old 11-13-2014 , 11:00   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #53

I use this ... Nice Job ... v3x it's realy nice for Beginner
__________________

Last edited by popeye10; 11-18-2014 at 08:40.
popeye10 is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 11-13-2014 , 11:50   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #54

It may be cool for a beginner that doesn't want to write the natives by hand, but you won't learn anything by using this tool, you need to try to understood what you are doing and why you are doing so, how natives work, what every param for them mean.
__________________
HamletEagle is offline
Old 11-15-2014, 12:07
Eagle07
This message has been deleted by Eagle07.
Amine Belokda
Senior Member
Join Date: Oct 2015
Location: ML_NOT_FOUND
Old 07-04-2016 , 02:47   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #55

Wow
__________________
Amine Belokda is offline
Send a message via MSN to Amine Belokda
WarshipLegend
Junior Member
Join Date: Jul 2016
Old 07-14-2016 , 10:43   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #56

Hi everybody i will soon buy a cs1.6 server and dont want to use others menus and staff so i found this
creator but i have no idea on how to add menu items ! i mean what should i write ?
i want my shop menu to have these :
only for humans/cts and access for all
1) 50 hp 2000$
2) 150 hp 4000$
3) ak-47 3000$
4) m4a1 2000$
5) m249 6000$
6) g3sg1 8000$
7)goldenak 16000$
For vip i found this menu and i think i will use this for vip :http://forum.kgb-hosting.com/showthr...lder+shop+menu

If u dont feel like making me a menu like that i requested i would like to be teach how to do it myself! I will use these menus for basebuilder 6.5 mod just saying! thank you very much
WarshipLegend is offline
shehzad1234
BANNED
Join Date: Jan 2016
Location: https://t.me/pump_upp
Old 10-08-2016 , 08:50   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #57

Nice work bro !!
shehzad1234 is offline
Send a message via ICQ to shehzad1234 Send a message via AIM to shehzad1234 Send a message via Yahoo to shehzad1234
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 10-20-2016 , 12:24   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #58

Yes Nice - But i hope anyone will create that for VIPMENU with that .. like russian and polish guys in amxmodx
Godofwar is offline
shehzad1234
BANNED
Join Date: Jan 2016
Location: https://t.me/pump_upp
Old 11-16-2016 , 11:46   Re: [TOOL] AMXX Menu Generator
Reply With Quote #59

Quote:
Originally Posted by XINLEI View Post
Awesome.

Found a bug. This happens when i generate code more than once:
Spoiler


another one is that if you put an access flag, can't be removed.

Again, this is awesome. you can put a drop list for all commands available to call the menu, so it could not confuse newbies.
Fixed

PHP Code:
// Generated with v3x's AMXX Menu Generator

#include <amxmodx>
#include <amxmisc>

public plugin_init()
{
    
register_plugin("My Menu""1.0""Me");
    
register_clcmd("say /items""ShowMenu"ADMIN_ALL"test");
}

public 
ShowMenu(idlvlcid)
{
    if(!
cmd_access(idlvlcid0))
        return 
PLUGIN_HANDLED;

    new 
menu menu_create("Menu items""item_menu");

    
menu_additem(menu"a"""0); // case 0
    
menu_additem(menu"b"""0); // case 1
    
menu_additem(menu"c"""0); // case 2
    
menu_additem(menu"d"""0); // case 3
    
menu_additem(menu"e"""0); // case 4
    
menu_additem(menu"f"""0); // case 5
    
menu_additem(menu"f"""0); // case 6
    
menu_additem(menu"g"""0); // case 7
    
menu_additem(menu"h"""0); // case 8
    
menu_additem(menu"i"""0); // case 9
    
menu_additem(menu"j"""0); // case 10
    
menu_additem(menu"k"""0); // case 11
    
menu_additem(menu"l"""0); // case 12
    
menu_additem(menu"m"""0); // case 13
    
menu_additem(menu"n"""0); // case 14
    
menu_additem(menu"o"""0); // case 15
    
menu_additem(menu"p"""0); // case 16
    
menu_additem(menu"q"""0); // case 17
    
menu_additem(menu"r"""0); // case 18
    
menu_additem(menu"s"""0); // case 19
    
menu_additem(menu"t"""0); // case 20
    
menu_additem(menu"u"""0); // case 21
    
menu_additem(menu"v"""0); // case 22
    
menu_additem(menu"w"""0); // case 23
    
menu_additem(menu"x"""0); // case 24
    
menu_additem(menu"y"""0); // case 25
    
menu_additem(menu"z"""0); // case 26
    
menu_additem(menu"0"""0); // case 27
    
menu_additem(menu"1"""0); // case 28
    
menu_additem(menu"2"""0); // case 29
    
menu_additem(menu"3"""0); // case 30
    
menu_additem(menu"4"""0); // case 31
    
menu_additem(menu"5"""0); // case 32
    
menu_additem(menu"6"""0); // case 33
    
menu_additem(menu"7"""0); // case 34
    
menu_additem(menu"8"""0); // case 35
    
menu_additem(menu"9"""0); // case 36

    
menu_setprop(menuMPROP_EXITMEXIT_ALL);

    
menu_display(idmenu0);

    return 
PLUGIN_HANDLED;
}

public 
item_menu(idmenuitem)
{
    if(
item == MENU_EXIT)
    {
        
menu_destroy(menu);
        return 
PLUGIN_HANDLED;
    }

    new 
command[6], name[64], accesscallback;

    
menu_item_getinfo(menuitemaccesscommandsizeof command 1namesizeof name 1callback);

    switch(
item)
    {
        case 
0client_print(idprint_chat"You have selected a");
        case 
1client_print(idprint_chat"You have selected b");
        case 
2client_print(idprint_chat"You have selected c");
        case 
3client_print(idprint_chat"You have selected d");
        case 
4client_print(idprint_chat"You have selected e");
        case 
5client_print(idprint_chat"You have selected f");
        case 
6client_print(idprint_chat"You have selected f");
        case 
7client_print(idprint_chat"You have selected g");
        case 
8client_print(idprint_chat"You have selected h");
        case 
9client_print(idprint_chat"You have selected i");
        case 
10client_print(idprint_chat"You have selected j");
        case 
11client_print(idprint_chat"You have selected k");
        case 
12client_print(idprint_chat"You have selected l");
        case 
13client_print(idprint_chat"You have selected m");
        case 
14client_print(idprint_chat"You have selected n");
        case 
15client_print(idprint_chat"You have selected o");
        case 
16client_print(idprint_chat"You have selected p");
        case 
17client_print(idprint_chat"You have selected q");
        case 
18client_print(idprint_chat"You have selected r");
        case 
19client_print(idprint_chat"You have selected s");
        case 
20client_print(idprint_chat"You have selected t");
        case 
21client_print(idprint_chat"You have selected u");
        case 
22client_print(idprint_chat"You have selected v");
        case 
23client_print(idprint_chat"You have selected w");
        case 
24client_print(idprint_chat"You have selected x");
        case 
25client_print(idprint_chat"You have selected y");
        case 
26client_print(idprint_chat"You have selected z");
        case 
27client_print(idprint_chat"You have selected 0");
        case 
28client_print(idprint_chat"You have selected 1");
        case 
29client_print(idprint_chat"You have selected 2");
        case 
30client_print(idprint_chat"You have selected 3");
        case 
31client_print(idprint_chat"You have selected 4");
        case 
32client_print(idprint_chat"You have selected 5");
        case 
33client_print(idprint_chat"You have selected 6");
        case 
34client_print(idprint_chat"You have selected 7");
        case 
35client_print(idprint_chat"You have selected 8");
        case 
36client_print(idprint_chat"You have selected 9");
    }

    
menu_destroy(menu);

    return 
PLUGIN_HANDLED;

shehzad1234 is offline
Send a message via ICQ to shehzad1234 Send a message via AIM to shehzad1234 Send a message via Yahoo to shehzad1234
shehzad1234
BANNED
Join Date: Jan 2016
Location: https://t.me/pump_upp
Old 11-29-2016 , 09:19   Re: [TOOL] AMXX Menu Generator v1.3
Reply With Quote #60

Quote:
Originally Posted by Godofwar View Post
Yes Nice - But i hope anyone will create that for VIPMENU with that .. like russian and polish guys in amxmodx
yup bro
shehzad1234 is offline
Send a message via ICQ to shehzad1234 Send a message via AIM to shehzad1234 Send a message via Yahoo to shehzad1234
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:40.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode