
https://justpaste.it/133m1
5477 Hits
bind MOUSE1 "+zFire"
seta cg_weaponConfig_g "_zFireOff"
seta cg_weaponConfig_mg "_zFireOff"
seta cg_weaponConfig_sg "_zFireOff"
seta cg_weaponConfig_gl "_zFireOff"
seta cg_weaponConfig_rl "_zFireOff"
seta cg_weaponConfig_lg "_zFireOn" // turn it on for lg here
seta cg_weaponConfig_rg "_zFireOff"
seta cg_weaponConfig_pg "_zFireOff"
seta cg_weaponConfig_bfg "_zFireOff"
seta cg_weaponConfig_gh "_zFireOff"
seta cg_weaponConfig_ng "_zFireOff"
seta cg_weaponConfig_pl "_zFireOff"
seta cg_weaponConfig_cg "_zFireOff"
seta cg_weaponConfig_hmg "_zFireOff"
seta cg_weaponConfig "_zFireOff" //default, only actually gets used when one of the above is triggered but *empty*, just leaving it here so you know it's an inbuilt option.
// ------------------------------- +zFire script by Yakumo --------------------------------------------------------------------------------
// This script lets you alter what +zFire does for the lg, +zfire is used to replace any bind that was just to "+attack" before
// IMPORTANT!! : To use -
// 1. Your fire bind must be bound to "+zFire", right now I'm not using this so mouse 1 is just bound to +attack instead.
// 2. You need either _zFireOn or _zFireOff in *all* weapon configs (the secion with the aliases cg_weaponConfig_xxxxx in) for it to work properly!!!
// 3. In this example all weapons other than the LG have "_zFireOff" in their alias, and 'loadLGSettings' just calls cg_DrawCrosshair 2 and fov 100, then "loadDefWeapSettings" goes back to fov 110 and crosshair 1.
// "loadLGSettings" and "loadDefWeapSettings" are probably the only aliases you should think of changing.
alias zfireDefault "-attack;loadDefWeapSettings" //changes back to all default weaponsettings, don't edit this
alias loadLGSettings "cg_fov 100; cg_DrawCrosshair 2"// put all lg changes in here, crosshair, sens, fov etc,
alias loadDefWeapSettings "cg_fov 110;cg_DrawCrosshair 1" //put default weapon config here crosshair settings, and sens/fov etc etc
alias -zfire "zfireDefault" //changes back to all default weaponsettings
alias +zfire "+attack" // yes this is meant to be just +attack, it gets changed later.
alias zFirePt2 "+attack;loadLGSettings;" //2nd stage alias as otherwise you can't script more than one thing to change in an alias, loads al lg settings.
alias _zFireOn "alias +zfire zFirePt2;"
alias _zFireOff "alias +zfire +attack;" //do NOT call -zfire as it uses -attack it would stop next weapon firing, if fire was held during a change
// just reset +zfire to +attack only and as this is called on weapon change