Code: Select all
Quote:
Zap your way to victory. (Visual effects only!)
This plugin will create a zeus tracer projectile effect when you fire a shot.
Dependency:
Quote:
Sourcemod 1.8+
Metamod 1.10+
Code: Select all
Quote:
Place zeustracers.smx to addons/sourcemod/plugins/
Place zeustracers_guns.cfg to addons/sourcemod/configs/ and edit your configuration to fit your needs
Place zeustracers.cfg to cfg/sourcemod/ and edit your convars to fit your needs
Code: Select all
Quote:
sm_zeustracers_enabled - (Default: 1) - Enables/Disables plugin
Code: Select all
Quote:
sm_zeustracers <client> <1:ON | 0:OFF> - Turns on/off zeus tracers, this will make ALL weapons have zeus tracers regardless if it is disabled in configuration
Quote:
Code: Select all
Under sourcemod/configs/zeustracers_guns.cfg
You can enable/disable, set impact glow, impact volume, muzzle volume, and admin flags for each weapon.
https://wiki.alliedmods.net/Adding_A...rceMod)#Levels for the flags.
Code: Select all
"weapon_ak47" //Classname of weapon
{
"Enable" "1" //Enable or disable for this weapon (0 to disable, 1 to enable) (sm_zeustracers can override this setting if it is set to disable)
"Impact Glow" "1" //Creates a particle glow at bullet impact (0 to disable, 1 to enable)
"Impact Sound" "0.5" //Sound volume of taser impact sound (Set to 0.0 to disable)
"Muzzle Sound" "0.3" //Sound volume of taser shot when shooting (Set to 0.0 to disable)
"Flag" "b" //Only players with this flag can have zeus tracers for this weapon (sm_zeustracers will override this), check https://wiki.alliedmods.net/Adding_Admins_(SourceMod)#Levels for more flags
}