TWM2/scripts/TWM2/Zombie/LoadZombieScripts.cs
Robert Fritzen 739d77d1e2 Change set 10/11
Adds all of the progress as of 10/11. NOTE: Do not run the mod right now
as there are a lot of features that won't work (IE: Player Zombies, All
Zombie Types other than Normal).
2017-10-11 11:46:41 -05:00

12 lines
457 B
C#

//Zombie Scripts Loading
//load zombie armors and AI
$search = "scripts/TWM2/Zombie/ZombieTypes/*.cs";
for($file = findFirstFile($search); $file !$= ""; $file = findNextFile($search)) {
$type = fileBase($file); // get the name of the script
exec("scripts/TWM2/Zombie/ZombieTypes/" @$type @ ".cs");
}
exec("scripts/TWM2/Zombie/ZombieCore.cs");
exec("scripts/TWM2/Zombie/PlayerZombieFunctions.cs");
exec("scripts/TWM2/Zombie/PlayerZombieAttacks.cs");