PDA

View Full Version : How to change spawn rates ?


everlastnmn
01-18-2010, 06:44 PM
Can anyone inform me how to change spawn rates, such as setting TOV to a 3 hr respawn for example ?

nilbog
01-18-2010, 07:00 PM
If you wanted to change the spawn time for *everything* in tov, it would be as simple as an sql query :

update spawn2 set respawntime = 10800 where zone like templeveeshan

respawntime is calculated in seconds

djeryv
01-19-2010, 08:50 AM
this may help you...for smaller servers...

Click Here (http://www.projecteq.net/phpBB2/viewtopic.php?t=4678&highlight=)

-Djeryv

everlastnmn
02-18-2010, 12:28 AM
And where would you update this code to ? Is there a way to do this through HeidiSQL ?

trevius
02-18-2010, 02:34 AM
It is really easy to change them using GeorgeS' NPC Loot Editor. Check his section of the forums for more info.

Dunmord
02-19-2010, 01:22 AM
And where would you update this code to ? Is there a way to do this through HeidiSQL ?

Its really simple.
If you are using windows and you did the step-by-step install of MySQL using the guide provided on the wiki, just go to...
1. Start->Menu->(You should see something related to MySQL)MySQL->MySQL Server 5.1(in my case)->MySQL command line client (click on this).

2. A black-command-line window appears asking for your password. You just need to type in the password you gave when doing the MySQL installation.

After that, and if you typed the correct password, you are inside the database manager.

type: use peq; (this is only if you chose the PEQ database) or use ax_classic;(only if you chose Angelox database).

now you can type the UPDATE.... that was posted earlier.