Description: Disables hellhounds/dogs on maps that use the stock hellhound var(pretty much 100% of maps).
Tested by loading into nazi zombie factory(der reise) and going up to round 12 & against _zombiemode_dogs script that comes with sniperbolt's mod tools patch(what maps use).
While i didn't test it against a custom map, i see no reason why it shouldn't work. However if it doesn't or there is a compatibility issue please tell me.
To install: Just drop and drag the IWD into the map folder that has dogs enabled.
If you want scripts / features made for you, then contact me by PM or email / skype etc it will cost you tho so if you have no intention of reciprocating don't even waste my time
i don't understand the point of this to be honest, no offence, you can just do
Code Snippet
Plaintext
//maps\_zombiemode_dogs::init();
in _zombiemode.gsc to disable dogs.
some things can be done this way, but only if they are designed to be "standalone"
By that I mean no other script references anything in the script in question. All its work is done internally only
Otherwise you get missing script or missing function errors from anycode that was "pointing" at either that script, or functions within that script
Example is zombiemode_spawner, theres a whole bunch of stuff in there thats called from other scripts, so removing it or the init for it will just cause a million errors
thundergun is a example of standalone ( assuming we dont count things like the knock down anims ) - the thread in zombiemode starts the function inside its script, but nothing else ever calls to it. So your safe to remove it this way