ItsMods

Full Version: Snipe mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
A simple snipe mod that is meant to be as vanilla as possible, that means no no sway, no quickscope fixes, etc.

http://bo.pastebin.com/fFtZNJ22

Known Issues:
Bots aren't affected by the forced quickscope.
Class selection at the beginning of the map still can change weapons.





edit by d0h://attached
Just a quick tip, you can shorten this:
Code:
        if (valid){
        }
        else{
            self giveWeapons();
        }

to this:
Code:
        if (!valid){
            self giveWeapons();
        }