Now I use ADE to edit but It's take time xan anyone tell me how to make monster respawn in shot time in easier way T T
Now I use ADE to edit but It's take time xan anyone tell me how to make monster respawn in shot time in easier way T T
If you want to make a bunch of respawn times the same, you can do this with a query in your world DB.
Replace X with your respawn time, Y with the first entry ID to change in the range, and Z with the last entry ID.Code:UPDATE `creature_proto` SET RespawnTime = X WHERE `entry` BETWEEN 'Y' and 'Z';
So, if I wanted to make all monsters with IDs 100-200 have a respawn of 5, X=5, Y=100, Z=200.