Jump to content

Possible to make all enemies spawn only zombies?


Recommended Posts

Hey, I know this might sound very odd, but if there any way to spawn only zombies in the game, with the exception of quests and bosses?

 

just I want to make the equivalent of a dawn of the dead kind of theme, so I want just zombies, and a lot of zombies!

 

can anyone give me instructions on how to do this? preferably step by step?

 

orrrrrr... even do it for me if youve nothing better to do? lolz

 

thanks for your time!

 

evil_artifact

Link to comment

No topic title as cool as this one with the word Zombie's in it shall remain untouched.

 

Dawn of the Dead, Sacred 2 Style!

 

1116956387.jpg

 

 

Possible?

 

Please someone tell us it is so!

 

Bump of coolness from me, here's to hoping that one of the great game modders here can help you out Shane

 

And, btw, welcome to DarkMatters!

 

:)

 

gogo

Link to comment

In scripts\server\spawn.txt, the first instance of zombie shows me:

mgr.addSpawn (47,29,0,{ -- Swamp Zombies Warrior
total_density = 20,
layermap_id = 2,
{1098,8,"",0,0,0,0},
{1082,6,"",0,0,1,0},
{1083,6,"",0,0,2,0},
{1097,2,"",0,0,3,0},
} )

So there's 4 different types of zombie in that spawn group. The first value in {1098,8,"",0,0,0,0} is the id from server\creatures.txt. And there are more zombie id values in creatures.txt. I don't know what the other values are in the groups, I think there is a topic that talks about them though.

 

I think all you would have to do is replace the other creature ids from the various spawn groups in spawn.txt with the zombie ids.

Using the first spawn group as an example:

From
mgr.addSpawn (1,52,0,{ -- Kristallregion V
total_density = 35,
layermap_id = 3,
{2036,4,"",0,0,0,0},
{2050,5,"",0,0,1,0},
{2041,2,"",0,0,2,0},
{2042,1,"",0,0,3,0},
} )
To
mgr.addSpawn (1,52,0,{ -- Kristallregion V
total_density = 35,
layermap_id = 3,
{1082,4,"",0,0,0,0},
{1083,5,"",0,0,1,0},
{1097,2,"",0,0,2,0},
{1098,1,"",0,0,3,0},
} )

I hope this helps.

Link to comment
  • 2 weeks later...

As Malachor said it is possible to replace all the creatures with zombies, just make sure not to replace mini bosses and major bosses with regular zombie :)

 

The only problem is that you will need a LOT of time and patience to change all the spawn file :)

 

What I did to my own Sacred 2 was these settings :

- I maxed out the number of creatures that are spawn, but I got angry when I was "overwhelmed" by Rabits, Frogs, Crows, Deers and other "dangerous" animals.

- so I replace all these "creatures" spawn ID with wolves :D sometimes there were so many of them that I got stuck in them and couldn't run :D

 

 

What I suggest to you is this 3 NICE things :

- max the density of the creature spawn

- replace all creature with zombies

- DON'T add Undead Death Potions(purple ones) to the shops :D

Link to comment
  • 5 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...
Please Sign In or Sign Up