Ok been working on a few scripts and i cant seem to get this 1 working can you tell me where im going wrong :s
This goes in the autoexec.cfg
// Hide or Show you Main Weapon Script
//
bind “k” “weaponbank 1; cg_drawgun 1”
bind “k” “weaponbank 3; cg_drawgun 1”
bind “k” “weaponbank 6; cg_drawgun 1”
bind “k” “weaponbank 5; cg_drawgun 1”
bind “k” “weaponbank 7; cg_drawgun 1”
bind “k” “weaponbank 4; cg_drawgun 1”
bind “k” “weaponbank 2; cg_drawgun 1”
//
bind “k” “vstr waffenanzeige”
set ohnetwaffe “exec hauptwaffe_aus.cfg ; set waffenanzeige vstr mitwaffe;
echo ^oHIDE ^0Mainweapon”
set mitwaffe “exec hauptwaffe_an.cfg; set waffenanzeige vstr ohnewaffe;
echo ^oSHOW ^0Mainweapon”
set waffenanzeige “vstr ohnewaffe”
//
and the there are 2 files called “hauptwaffe_an.cfg” and “hauptwaffe_aus.cfg” placed in the etmain folder
1st 1 has this code in it (hauptwaffe_an.cfg)
//
// Hauptwaffe sichtbar
//
bind “k” “weaponbank 3; cg_drawgun 1”
//
2nd has this code (hauptwaffe_aus.cfg)
//
// Hauptwaffe unsichtbar
//
bind “k” “weaponbank 3; cg_drawgun 0”
//
Also i got a feeling that there is and EASIER way of doing this…
And for an Extra i got a script that zooms the compass map in and out:-
//Zoom mini map
bind = “mapzoomin” //zooms compass map in
bind - “mapzoomout” //zooms compass map out
//
That works but i want to know how to make the map stay zoomed out instead of having to do it every time a new map starts…


