qzdisk 发表于 2008-8-27 10:08:23

menufront.sma

有高手会修改OP菜单文件的吗?

帮帮忙 修改一下!


/* AMX Mod X
*   Menus Front-End Plugin
*
* by the AMX Mod X Development Team
*originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
*This program is free software; you can redistribute it and/or modify it
*under the terms of the GNU General Public License as published by the
*Free Software Foundation; either version 2 of the License, or (at
*your option) any later version.
*
*This program is distributed in the hope that it will be useful, but
*WITHOUT ANY WARRANTY; without even the implied warranty of
*MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*General Public License for more details.
*
*You should have received a copy of the GNU General Public License
*along with this program; if not, write to the Free Software Foundation,
*Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*In addition, as a special exception, the author gives permission to
*link the code of this program with the Half-Life Game Engine ("HL
*Engine") and Modified Game Libraries ("MODs") developed by Valve,
*L.L.C ("Valve"). You must obey the GNU General Public License in all
*respects for all of the code used other than the HL Engine and MODs
*from Valve. If you modify this file, you may extend this exception
*to your version of the file, but you are not obligated to do so. If
*you do not wish to do so, delete this exception statement from your
*version.
*/
#include <amxmodx>
#include <amxmisc>
#define MAXMENUS   128
#define STRINGSIZE   32
#define STRINGLENGTH   STRINGSIZE - 1
#define MENUITEMSPERPAGE 8
//#define MENUS_NUMBER 16
new g_menuPosition
new g_menusNumber = 0
new g_menuBody
new bool:g_menuBodyPhrase
new g_menuCmd
new g_menuAccess
new g_menuPlugin
new g_coloredMenus
new g_clientMenuPosition
new g_clientMenusNumber = 0
new g_clientMenuBody
new bool:g_clientMenuBodyPhrase
new g_clientMenuCmd
new g_clientMenuAccess
new g_clientMenuPlugin
// menuBody: Text that will be shown for this item in menu
// menuCmd: Command that should be executed to start menu
// menuAccess: Access required for menu
// menuPlugin: The exact case-insensitive name of plugin holding the menu command
public AddMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
{
if (g_menusNumber + 1 == MAXMENUS)
{
log_amx("Error: Plugin ^"%s^" tried to add a menu item to Menu Front-End plugin with maximum menu items reached!", menuPlugin)
return
}
copy(g_menuBody, STRINGLENGTH, menuBody)
g_menuBodyPhrase = false

copy(g_menuCmd, STRINGLENGTH, menuCmd)
g_menuAccess = menuAccess

copy(g_menuPlugin, STRINGLENGTH, menuPlugin)
g_menusNumber++
server_print("Menu item %d added to Menus Front-End: ^"%s^" from plugin ^"%s^"", g_menusNumber, menuBody, menuPlugin)
}
public AddMenuLang(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
{
if (g_menusNumber + 1 == MAXMENUS)
{
log_amx("Error: Plugin ^"%s^" tried to add a menu item to Menu Front-End plugin with maximum menu items reached!", menuPlugin)
return
}
copy(g_menuBody, STRINGLENGTH, menuBody)
g_menuBodyPhrase = true

copy(g_menuCmd, STRINGLENGTH, menuCmd)
g_menuAccess = menuAccess

copy(g_menuPlugin, STRINGLENGTH, menuPlugin)
g_menusNumber++
//server_print("Menu item %d added to Menus Front-End: ^"%s^" (LANG) from plugin ^"%s^"", g_menusNumber, menuBody, menuPlugin)
}
public AddClientMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
{
if (g_clientMenusNumber + 1 == MAXMENUS)
{
log_amx("Error: Plugin ^"%s^" tried to add a menu item to Menu Front-End plugin with maximum menu items reached!", menuPlugin)
return
}
copy(g_clientMenuBody, STRINGLENGTH, menuBody)
g_clientMenuBodyPhrase = false

copy(g_clientMenuCmd, STRINGLENGTH, menuCmd)
g_clientMenuAccess = menuAccess

copy(g_clientMenuPlugin, STRINGLENGTH, menuPlugin)
g_clientMenusNumber++
server_print("Client menu item %d added to Client Menus Front-End: ^"%s^" from plugin ^"%s^"", g_clientMenusNumber, menuBody, menuPlugin)
}
AddDefaultMenus()
{
AddMenuLang("KICK_PLAYER", "amx_kickmenu", ADMIN_KICK, "Players Menu")
AddMenuLang("BAN_PLAYER", "amx_banmenu", ADMIN_BAN, "Players Menu")
AddMenuLang("SLAP_SLAY", "amx_slapmenu", ADMIN_SLAY, "Players Menu")
AddMenuLang("TEAM_PLAYER", "amx_teammenu", ADMIN_LEVEL_A, "Players Menu")
AddMenuLang("CHANGEL", "amx_mapmenu", ADMIN_MAP, "Maps Menu")

AddMenuLang("VOTE_MAPS", "amx_votemapmenu", ADMIN_VOTE, "Maps Menu")
AddMenuLang("VOTE_KICK", "amx_votekickmenu", ADMIN_MAP, "Vote Menu")
AddMenuLang("VOTE_BAN", "amx_votebanmenu", ADMIN_MAP, "Vote Menu")

AddMenuLang("SERVER_COM", "amx_cmdmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("CLIENT_COM", "amx_clcmdmenu", ADMIN_LEVEL_A, "Players Menu")
AddMenuLang("SPECH_STUFF", "amx_speechmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("CVARS_SET", "amx_cvarmenu", ADMIN_CVAR, "Commands Menu")
AddMenuLang("CONFIG", "amx_cfgmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("LANG_SET", "amx_langmenu", ADMIN_CFG, "Multi-Lingual System")
AddMenuLang("STATS_SET", "amx_statscfgmenu", ADMIN_CFG, "Stats Configuration")
AddMenuLang("PAUSE_PLUG", "amx_pausecfgmenu", ADMIN_CFG, "Pause Plugins")
AddMenuLang("RES_WEAP", "amx_restmenu", ADMIN_CFG, "Restrict Weapons")
AddMenuLang("TELE_PLAYER", "amx_teleportmenu", ADMIN_CFG, "Teleport Menu")
}
public actionMenu(id, key)
{
switch (key)
{
case 8: displayMenu(id, ++g_menuPosition)
case 9: displayMenu(id, --g_menuPosition)
default: client_cmd(id, "%s", g_menuCmd * 8 + key])
}

return PLUGIN_HANDLED
}
public clientActionMenu(id, key)
{
switch (key)
{
case 8: clientDisplayMenu(id, ++g_clientMenuPosition)
case 9: clientDisplayMenu(id, --g_clientMenuPosition)
default: client_cmd(id, "%s", g_clientMenuCmd * 8 + key])
}

return PLUGIN_HANDLED
}
displayMenu(id, pos)
{
if (pos < 0)
return
new menuBody
new b = 0
new start = pos * MENUITEMSPERPAGE
if (start >= g_menusNumber)// MENUS_NUMBER
start = pos = g_menuPosition = 0
new len = format(menuBody, 511,

g_coloredMenus ? "\yAMX Mod X Menu\R%d/%d^n\w^n" : "AMX Mod X Menu %d/%d^n^n" , pos + 1, (g_menusNumber / MENUITEMSPERPAGE) + (((g_menusNumber % MENUITEMSPERPAGE) > 0) ? 1 : 0))
new end = start + MENUITEMSPERPAGE
new keys = MENU_KEY_0
if (end > g_menusNumber)// MENUS_NUMBER
end = g_menusNumber   // MENUS_NUMBER
new flags = get_user_flags(id)
for (new a = start; a < end; ++a)
{
if ((flags & g_menuAccess) && (is_plugin_loaded(g_menuPlugin) != -1))
{
   keys |= (1<<b)
   
   if (g_menuBodyPhrase)
    len += format(menuBody, 511-len, "%d. %L^n", ++b, id, g_menuBody)
   else
    len += format(menuBody, 511-len, "%d. %s^n", ++b, g_menuBody)
} else {
   ++b
   
   if (g_coloredMenus)
   {
    if (g_menuBodyPhrase)
   len += format(menuBody, 511-len, "\d%d. %L^n\w", b, id, g_menuBody)
    else
   len += format(menuBody, 511-len, "\d%d. %s^n\w", b, g_menuBody)
   } else {
    if (g_menuBodyPhrase)
   len += format(menuBody, 511-len, "#. %L^n", id, g_menuBody)
    else
   len += format(menuBody, 511-len, "#. %s^n", g_menuBody)
   }
}
}
if (end != g_menusNumber)// MENUS_NUMBER
{
format(menuBody, 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
keys |= MENU_KEY_9
} else {
format(menuBody, 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
}
show_menu(id, keys, menuBody)
}
clientDisplayMenu(id, pos)
{
if (pos < 0)
return
new menuBody
new b = 0
new start = pos * MENUITEMSPERPAGE
if (start >= g_clientMenusNumber)// MENUS_NUMBER
start = pos = g_clientMenuPosition = 0
new len = format(menuBody, 511, g_coloredMenus ? "\yAMX Mod X Client Menu\R%d/%d^n\w^n" : "AMX Mod X Client Menu %d/%d^n^n" , pos + 1, (g_clientMenusNumber / MENUITEMSPERPAGE) + (((g_clientMenusNumber % MENUITEMSPERPAGE) > 0) ? 1 : 0))
new end = start + MENUITEMSPERPAGE
new keys = MENU_KEY_0
if (end > g_clientMenusNumber)   // MENUS_NUMBER
end = g_clientMenusNumber   // MENUS_NUMBER
new flags = get_user_flags(id)
for (new a = start; a < end; ++a)
{
if ((flags & g_clientMenuAccess) && (is_plugin_loaded(g_clientMenuPlugin) != -1))
{
   keys |= (1<<b)
   
   if (g_clientMenuBodyPhrase)
    len += format(menuBody, 511-len, "%d. %L^n", ++b, id, g_clientMenuBody)
   else
    len += format(menuBody, 511-len, "%d. %s^n", ++b, g_clientMenuBody)
} else {
   ++b
   
   if (g_coloredMenus)
   {
    if (g_clientMenuBodyPhrase)
   len += format(menuBody, 511-len, "\d%d. %L^n\w", b, id, g_clientMenuBody)
    else
   len += format(menuBody, 511-len, "\d%d. %s^n\w", b, g_clientMenuBody)
   } else {
    if (g_clientMenuBodyPhrase)
   len += format(menuBody, 511-len, "#. %L^n", id, g_clientMenuBody)
    else
   len += format(menuBody, 511-len, "#. %s^n", g_clientMenuBody)
   }
}
}
if (end != g_clientMenusNumber)   // MENUS_NUMBER
{
format(menuBody, 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
keys |= MENU_KEY_9
}
else {
format(menuBody, 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
}
show_menu(id, keys, menuBody)
}
public cmdMenu(id, level, cid)
{
if (cmd_access(id, level, cid, 1))
displayMenu(id, g_menuPosition = 0)
return PLUGIN_HANDLED
}
public clientCmdMenu(id, level, cid)
{
if (cmd_access(id, level, cid, 1))
clientDisplayMenu(id, g_clientMenuPosition = 0)
return PLUGIN_HANDLED
}
public addmenuitem_cmd(id, level, cid)
{
if (!cmd_access(id, level, cid, 5))
return PLUGIN_HANDLED
// AddMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
new menuBody, menuCmd, flags, menuAccess = 0, menuPlugin
read_argv(1, menuBody, STRINGLENGTH)
read_argv(2, menuCmd, STRINGLENGTH)
read_argv(3, flags, STRINGLENGTH)
menuAccess = read_flags(flags)
read_argv(4, menuPlugin, STRINGLENGTH)
AddMenu(menuBody, menuCmd, menuAccess, menuPlugin)
return PLUGIN_HANDLED
}
public addclientmenuitem_cmd(id, level, cid)
{
if (!cmd_access(id, level, cid, 5))
return PLUGIN_HANDLED
// AddMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
new menuBody, menuCmd, flags, menuAccess = 0, menuPlugin
read_argv(1, menuBody, STRINGLENGTH)
read_argv(2, menuCmd, STRINGLENGTH)
read_argv(3, flags, STRINGLENGTH)
menuAccess = read_flags(flags)
read_argv(4, menuPlugin, STRINGLENGTH)
AddClientMenu(menuBody, menuCmd, menuAccess, menuPlugin)
return PLUGIN_HANDLED
}
public plugin_init()
{
register_plugin("Menus Front-End", AMXX_VERSION_STR, "AMXX Dev Team")
register_dictionary("menufront.txt")
register_dictionary("common.txt")
register_menucmd(register_menuid("AMX Mod X Menu"), 1023, "actionMenu")
register_menucmd(register_menuid("AMX Mod X Client Menu"), 1023, "clientActionMenu")
register_clcmd("amxmodmenu", "cmdMenu", ADMIN_MENU, "- displays menus")
register_clcmd("amx_menu", "clientCmdMenu", 0, "- displays menus available to client")
register_srvcmd("amx_addmenuitem", "addmenuitem_cmd", 0, "<menu text> <menu command> <access flags> <plugin name> - Add a menu item to Menus Front-End")
register_srvcmd("amx_addclientmenuitem", "addclientmenuitem_cmd", 0, "<menu text> <menu command> <access flags> <plugin name> - Add a menu item to Client Menus Front-End")
g_coloredMenus = colored_menus()
AddDefaultMenus()
// Add custom menu items
new configs
get_configsdir(configs, 127)
server_cmd("exec %s/custommenuitems.cfg", configs)
}

我想把这部分功能去掉 但是去掉这段代码就编译出来的话!就会出错!


AddMenuLang("SERVER_COM", "amx_cmdmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("CLIENT_COM", "amx_clcmdmenu", ADMIN_LEVEL_A, "Players Menu")
AddMenuLang("SPECH_STUFF", "amx_speechmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("CVARS_SET", "amx_cvarmenu", ADMIN_CVAR, "Commands Menu")
AddMenuLang("CONFIG", "amx_cfgmenu", ADMIN_MENU, "Commands Menu")
AddMenuLang("LANG_SET", "amx_langmenu", ADMIN_CFG, "Multi-Lingual System")
AddMenuLang("STATS_SET", "amx_statscfgmenu", ADMIN_CFG, "Stats Configuration")
AddMenuLang("PAUSE_PLUG", "amx_pausecfgmenu", ADMIN_CFG, "Pause Plugins")
AddMenuLang("RES_WEAP", "amx_restmenu", ADMIN_CFG, "Restrict Weapons")
AddMenuLang("TELE_PLAYER", "amx_teleportmenu", ADMIN_CFG, "Teleport Menu")


请高手帮忙 帮我修改一下! 谢谢了!

52yz 发表于 2008-8-27 11:05:20

回复: menufront.sma

直接注释掉那一段,编译没什么问题啊,这几句就是增加几个显示的菜单而已,你把编译出的错误粘帖上来看看

baili1258 发表于 2008-8-27 11:07:47

回复: menufront.sma

Post by qzdisk
有高手会修改OP菜单文件的吗?

帮帮忙 修改一下!


/* AMX Mod X
* Menus Front-End Plugin
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General P...

你要去掉的功能的插件是这里
这里也要改的..

plmenu.sma

qzdisk 发表于 2008-8-27 20:42:27

回复: menufront.sma

谢谢啦!谢谢指点!我去试试!
页: [1]
查看完整版本: menufront.sma