Re: Simple Menu Builder
Bugfix v2.0b @ 04.02.2017
|
Re: Simple Menu Builder
So i have many plugins and i want some plugins commands in one menu. (most have a default menu)
Example: 1. Trail menu press 1 and show the default trail menu! Is that not possible with this plugin? |
Re: Simple Menu Builder
Who said it isn't possible? That's the exact purpose of this plugin - http://i.imgur.com/0Ke8wvu.jpg
Did you fix your mistakes as I said on the previous page? |
Re: Simple Menu Builder
I have now fix this with the [New Menu]
in default now: ;MENU_OPEN = say /menu, say_team /menu, In the picture it shows the cvars(rtv). at me not. sry my english is bad http://steamcommunity.com/sharedfile.../?id=856749918 |
Re: Simple Menu Builder
Oh, you're using it on Half-Life. I don't know really know whether it will work properly there. Could you post the full .ini file with the changes once again to see if everything is OK?
|
Re: Simple Menu Builder
Quote:
normal it disable the colours but work. (cs plugins) I test it with , and without , My last test .ini looks there. PHP Code:
|
Re: Simple Menu Builder
I told you to remove the comma in the end:
MENU_OPEN = say /menu, say_team /menu, |
Re: Simple Menu Builder
Quote:
|
Re: Simple Menu Builder
Then it probably doesn't work on Half-Life. I don't have the game, so i can't test it and tell you for sure.
|
Re: Simple Menu Builder
Quote:
|
Re: Simple Menu Builder
Quote:
|
Re: Simple Menu Builder
2 Attachment(s)
Quote:
Can you install this version and the default menu on your server, and try to open the menu and choose some option? It will create a log file called `_simple_menu_log.txt` on `addons/amxmodx/logs`, after it post your log here. I tested it here on my computer with Counter-Strike, and it is working fine. This was my log: Code:
L 02/04/2017 - 16:04:34: {11.256 15880 1233077 1233077} Entering on menuMain(3) |
Re: Simple Menu Builder
Hey thanks addons zz for your help! Test it on my Sven coop Server [CostumMaps]
I have override the amxx and SimpleMenu.ini. It show me the menus and Item Names with numbers. So i have the plugin with /hats command on my server but no work. The menu short dont show (1sec) and come back so i press the number but do nothing. Dont show the hats menu. I try the Leave the Server (disconnect) that works. So it is the same problem. :( |
Re: Simple Menu Builder
He wanted the debug log. The version was not supposed to fix anything, but to help fixing the issue.
|
Re: Simple Menu Builder
Quote:
PHP Code:
|
Re: Simple Menu Builder
I installed svencoop, and it working correcty or almost. On the my player console I got this:
Code:
Code:
L 02/04/2017 - 20:58:56: Log file started (file "svencoop\addons\amxmodx\logs\_simple_menu_log.txt") (game "svencoop") (amx "1.8.3-dev+4982")The solution to this I do not know but do not try to open menus that use the say command. May be menus named as `amx_cool_menu` can be accessed. |
Re: Simple Menu Builder
Quote:
Thanks for your big help. With the commands work it with sven coop. :) |
Re: Simple Menu Builder
Good job, Valve...
You can still use it in any game without executing the "say" command. You'll need to execute the plugin's function directly: PHP Code:
Instead of "function_name", you need to type the function that opens the trail menu. In order to find the correct name, you need to open the trail's plugin .sma file and find the line that registers the command. It looks like this: PHP Code:
|
Re: Simple Menu Builder
Awesome ! I love it working just fine for me. But i have a request, can you make it so instead of typing /menu people could press a button on there keyboard to open up the menu? I don't eant them binding anything i just want that when they press a "key" on the keyboard it shows the menu.
Thanks in advance ! |
Re: Simple Menu Builder
Only if that button has a command on it. For example, if you want the M button, you should assign the menu on the "chooseteam" command, assuming that all players have binded that command on that button.
|
Re: Simple Menu Builder
can you please be more specific on how to do that? do i have to change anything in the .sma file? or do i need to edit something in the simplemenu.ini ??
|
Re: Simple Menu Builder
PHP Code:
PHP Code:
|
Re: Simple Menu Builder
Quote:
|
Re: Simple Menu Builder
Yeah, you're right. :)
I keep saying soon, but I really can't find the will to do it. |
Re: Simple Menu Builder
Quote:
|
Re: Simple Menu Builder
Hehe, nice one. :)
You're totally right, but lately I'm lacking motivation because of some things in my personal life. |
Re: Simple Menu Builder
So, it is not lack of motivation, but your are just figuring it out what is the most important thing for you in your life. The world is an infinite room of possibilities beyond AMXX scripting, you just need to suit it out whether AMXX scripting still playing role in your life, or whether moving on with other stuff gets you priority. Simply saying, just do AMXX scripting if you fell like and got the time for it. You seem already done a great contribution for the community, there is not need to keep pushing yourself on scripting if it not being easy for you.
|
Re: Simple Menu Builder
AMXX is not my main priority, of course. I script when I have some free time and I do it for fun.
|
Re: Simple Menu Builder
I do want to make it when people press "m" and its working, but when it comes to choosing team it doesn't work. is there a way i can get both sides working at the same time? i put the option to choose team inside the simplemenu.ini like the following : "Choose Team" "chooseteam"
but at the same time i have MENU_OPEN = chooseteam which is causing the team menu not to open is there a way to make it do both things? |
Re: Simple Menu Builder
Yes, you put the option to choose team inside the simplemenu.ini like the following : "Choose Team" "chooseteam"
|
Re: Simple Menu Builder
it doesn't work, because when i do press the button it doesn't do anything
when pressed, it doesn't show the choose team menu. Maybe because i have MENU_OPEN = chooseteam is there a way to do both without issues? thanks in advance |
Re: Simple Menu Builder
When you set `MENU_OPEN = chooseteam` it does not open the menu?
|
Re: Simple Menu Builder
this opens the simple menu builder but doesn't open the actual chooseteam menu
In the list of menu building i put the option to orpn the menu "open choosetram menu" "choosemenu" but all it did was open the same menu again when ehat i really eant is the teame menu to open :/ |
Re: Simple Menu Builder
You canīt use same commands to open menu and choose team (loop).
This way will work: Solution for your problem: MENU_OPEN = chooseteam [Menu Items] "Choose Team" "jointeam" |
Re: Simple Menu Builder
This worked thank you !
|
Re: Simple Menu Builder
Update v2.1 @ 25.02.2017
|
Re: Simple Menu Builder
It took a while but itīs done! :-)
Thanks for adding that feature! |
Re: Simple Menu Builder
Is it possible with this plugin to do something like:
You type in chat /extra and a menu like this appears: Extra menu - drunk - drug - burn After you selected an item from extra menu a menu will appear with all available players to use the commands associated with extra menu items. Hopefully you understand what I mean. If it is possible could you please do a small example how to achieve this? Thanks in advance! P.s.- Basically the same way that default options kick, ban from amxmodxmenu work |
Re: Simple Menu Builder
PHP Code:
|
Re: Simple Menu Builder
Work like a charm!Thank you!
Edit: Perhaps is a easy solution or perhaps is not possible but Im trying to do so when you choose one of the options: "drunk" "menu_drunk" "drug" "menu_drug" "burn" "menu_burn" then you have the option to go back to the first page of the main menu ( say /extra) I tried using reopen feature but doesnīt work, I guess itīs because the "menu_drunk", "menu_drug" and "menu_burn" are not submenus from [New menu = Extras] Is it possible with the actual plugin to do this? |
| All times are GMT -4. The time now is 06:06. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.