PDA

View Full Version : DoD ClassMenu ( v0.5beta )


Firestorm
07-09-2006, 09:39 AM
// DESCRIPTION:
// ============
//
// - This plugin let's you (and any other admin with "BAN"-access)
// join any class you like, even if it's completely restricted,
// or limited and full.
// - No need to kick the guy off your server who's class you want
// to play, simply bring up the menu and choose your class!
// - You can set it to immediately "kill" you and respawn you with
// the new class.
// - Axis playing admins can be allowed to use the two Para classes
// "FG42-Zweibein" (FG42 Bipod) and "FG42-Zielfernrohr" (Scoped FG42)
// on normal maps as well.

// USAGE:
// ======
//
// dod_classmenu_enabled <1/0> = allow/disallow using DoD ClassMenu
// (cvar for amxx.cfg)
//
// dod_classmenu_quickchange <1/0> = enable/disable immediate respawning
// with new class after choosing it
// (cvar for amxx.cfg)
//
// dod_classmenu_allowpara <1/0> = allow/disallow axis to choose FG42
// and Scoped FG42 on non-para maps
// (cvar for amxx.cfg)
//
//
// dodclassmenu = bring up the DoD ClassMenu
// (bind a key to this admin command)
//
// NOTE: the menu closes after 10 seconds
// if you don't make a choice

// CHANGELOG:
// ==========
//
// - 11.04.2005 Version 0.5beta
// Initial Release

hollow
12-07-2006, 09:47 PM
I was kind of wondering after looking around for ages. Theres a plugin similar to this one where you can spawn with any gun on the game no matter what map your playing. I believe you can set it for admins only or to the entire server as well for usage. Any idea where i can find this? So far this is the only site supporting the best plugins. More like plugins period. Thanks

grimsybaby
01-10-2009, 04:54 PM
just wondering is it possible to get this in a menu form for the amxmodmenu ?

Dr.G
01-10-2009, 08:25 PM
Its over 2 years old + its a beta version... so no i dont think so...

Ba5ic
01-11-2009, 03:24 AM
just wondering is it possible to get this in a menu form for the amxmodmenu ?

I'm unsure about integrating it into the amxmodmenu but just bind the command to a key i.e. bind "F10" "dodclassmenu"

It's worked for me like that for years....

Thanks!

Tank
01-11-2009, 09:00 AM
Might want to look into dod/addons/amxmodx/configs/custommenuitems.cfg

// Here you can add menu items from any plugin to Menus Front-End plugin, aka "amxmodmenu".
// You can also add menu items to the normal non-admin client menu "amx_menu".
//
// Adding to "amxmodmenu":
// Usage: "amx_addmenuitem <menu text> <menu command> <access flags> <plugin name>"
//
// Adding to "amx_menu":
// Usage: "amx_addclientmenuitem <menu text> <menu command> <access flags> <plugin name>"
//
// <menu text>: This is the text displayed in the menu itself for this item.
// <menu command>: This is the client command used to access the menu.
// <access flags>: Specify what access flags admins must have to use this menu item. (Check users.ini for access flags.)
// <plugin name>: This must be the _exact_ (though case insensitive) name of the plugin which holds the menu command. (Use "amxx plugins" in server console, plugin names are listed in Name column.)
//
// Example: (be sure to use quotes around parameters with spaces!)
//
// amx_addmenuitem "Weapon Arena" "weaponarena_menu" "hu" "Weapon Arena"
// amx_addclientmenuitem "Warcraft 3" "war3menu" "" "Warcraft 3 XP"