AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [REQ] Custom Menu (https://forums.alliedmods.net/showthread.php?t=207221)

LambStar 01-31-2013 05:22

[REQ] Custom Menu
 
Hey there,

Can anyone make a menu for silver/golden player with ADMIN_LEVEL_G for silver and ADMIN_LEVEL_H for golden.

In that menu i want kick,votemap,changelevel menu for silver player and kick,ban,votemap,changelevel,cvar menu for golden player

to open silver player menu console cmd i want is "amx_spmenu" and for golden player "amx_gpmenu"

Thank you,
Any help will be appreciated.

ANTICHRISTUS 01-31-2013 14:32

Re: [REQ] Custom Menu
 
already asked, search by keywords (golden, silver) firstly only in titles, then in posts.

LambStar 02-01-2013 05:43

Re: [REQ] Custom Menu
 
I can't find any if there is any please give the link
thanks

Jhob94 02-01-2013 10:50

Re: [REQ] Custom Menu
 
You sure you cant find? You probably didnt tried to use search button in your right side because what you requested was requested lot of times before.

10seconds and fid this: https://forums.alliedmods.net/showth...=golden+silver

LambStar 02-02-2013 04:18

Re: [REQ] Custom Menu
 
Hey I Don't want the silver/golden plugin! i want the menu read my post again i already have the plugin

LambStar 02-02-2013 12:23

Re: [REQ] Custom Menu
 
Someone Please Help..

Jhob94 02-02-2013 12:29

Re: [REQ] Custom Menu
 
Dont Bump

sami_spt 02-02-2013 13:45

Re: [REQ] Custom Menu
 
2 Attachment(s)
I was bored, so I decided to help you.
Here you go.

COMMANDS: /goldenmenu OR say goldenmenu
COMMANDS: /silvermenu OR say silvermenu

its a simple code, so dont talk to much :)
**EDIT**: Not sure if everything work
Original plugin by Blizzard , i just edited the menu's
You can find the original plugin in the unapproved section.

Kia 02-02-2013 13:57

Re: [REQ] Custom Menu
 
Code:

register_concmd("silvermenu", "AdminMenu", ADMIN_KICK);
Quote:

ADMIN_LEVEL_G for silver and ADMIN_LEVEL_H for golden.
-

Code:

  client_cmd(id, "amx_kickmenu");
You need to modify admincmd.amxx to make this working by allowing ADMIN_LEVEL_H to use this command.

sami_spt 02-02-2013 14:50

Re: [REQ] Custom Menu
 
sorry!!

PHP Code:

    register_clcmd("say /silvermenu""AdminMenu"ADMIN_KICK);
    
register_concmd("silvermenu""AdminMenu"ADMIN_KICK); 

=>
PHP Code:

    register_clcmd("say /silvermenu""AdminMenu"ADMIN_ADMIN_LEVEL_G);
    
register_concmd("silvermenu""AdminMenu"ADMIN_ADMIN_LEVEL_G); 

FOR SILVER.
----------------
PHP Code:

    register_clcmd("say /silvermenu""AdminMenu"ADMIN_ADMIN_LEVEL_H);
    
register_concmd("silvermenu""AdminMenu"ADMIN_ADMIN_LEVEL_H); 

FOR GOLDEN
--------------------------------------------------------------------

and also make sure you edit cmdaccess.ini (RECOMMENDED) OR admincmd.sma and make the flags as you like.
---------------------------------
Better way instead of all of this, USE AMXMODMENU -,-


All times are GMT -4. The time now is 09:34.

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