Greetings again!

I am trying to edit creature stats and information. For example, I went to:

ServUO-master\Scripts\Mobiles\Normal

I chose a skeleton just to experiment with. I changed it's name, saved and restarted the server. To no avail, they were still "a skeleton". I use notepad++ to edit files.

Perhaps there is something I am missing or am in the incorrect place to edit the info contained in that script?

Thank you.

Ori
 
The Name = "a skeleton"; isn't the only one you need to change. There are at least 3 more places in the script that say skeleton. And its also best to make a copy of the script & change the copy & then also change the copy's name as well.
 
Any creatures already spawned (and loaded on server start up) aren't going to show you the changes as the old information is already serialized. You'll end up needing to remove/delete/respawn them after the loading is done.
 
Any creatures already spawned (and loaded on server start up) aren't going to show you the changes as the old information is already serialized. You'll end up needing to remove/delete/respawn them after the loading is done.
That did it, thanks!
 
Back