contact me about my other settings that encourage fair pub play!
[email protected]
see all my plugs in action @ 216.237.158.4
Code:
/* AMX Mod X script
*
*PLUGIN CVARS:
*------------------
* amx.cfg> ftb_auto 1 // 0 - OFF, 1 - ON
* If ftb_auto is set to 1, this plugin automatically
* detects potential "ghosters" (by idential IP).
*
* amx.cfg> ftb_mode 2 // 0 - OFF, 1 - A & B, 2 - A only
* A. It allows to spectate upon players from group/team
* only. Also first person only (mp_forcechasecam-like)
* B. It fades the screen after death while other
* players from group are alive (mp_fadetoblack-like)
*
* amx.cfg> ftb_alpha "alpha" // 0-255
* amx.cfg> ftb_color "red green blue" // 0-255 0-255 0-255
* These cvars are for fun only. (It is color by default)
*
* client console> setinfo ftb "red green blue"
* Also players may set color of the screen.
*
* server console> ftb_debug 1 // 0 - OFF, 1 - ON
* Enable debug mode.
*
* immunity is "M" ..or custom level_A
*
* COMMANDS:
* ---------------
* amx.cfg> ftb_addip "group name" "part of IP:Port/WONID"
* This command adds IP(s)/WONID to the specified group.
*
* EXAMPLE A:
* ----------
* ftb_auto 1
* ftb_mode 2
*
* ftb_addip "LAN A" "192.168.10."
*
* ftb_addip "club A" "192.168.20.10:"
* ftb_addip "club A" "192.168.20.11:"
* ftb_addip "club A" "192.168.20.12:"
*
* EXAMPLE B:
* ----------
* ftb_auto 0
* ftb_mode 1
*
* ftb_addip "LAN A" "192.168.10."
*
* ftb_addip "club A" "192.168.20.10:"
* ftb_addip "club A" "192.168.20.11:"
* ftb_addip "club A" "192.168.20.12:"
*
* ftb_addip "club B" "192.168.30.10:"
* ftb_addip "club C" "192.168.40.10:"
* ftb_addip "club D" "192.168.50.10:"
*/
#include <amxmodx>
#include <amxmisc>
#define IMMUNITY_LEVEL ADMIN_LEVEL_A
etc, etc......................................-=TRY ME!=-