mirror of
https://github.com/PhantomGamesDevelopment/TWM2.git
synced 2026-03-01 03:23:50 +00:00
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).
12 lines
457 B
C#
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");
|