What's new

Spawntime on Game object

Mopower

Verified Member
9
2016
0
So what would be the best way to drop a spawn time on a game object. Looked and never could find anything for it. So sorry if there is another post on this.:)
 

ExO

Admin
5,119
2014
1,639
You can modifiy it in gameobject table, like this:
UPDATE gameobject SET spawntimesecs = VALUE WHERE id = ENTRY or modify by guid by doing WHERE guid = instead.

Or just search for the entry and do it manually:
select * from gameobject WHERE id = ENTRY and then modify the column called spawntimesecs
 

Mopower

Verified Member
9
2016
0
Thank you for the quick response. I tried the last one and changed it from 120 to 0 didn't seem to make a difference in wait time. If you wanted immediate respawn it would be 0 correct?
 

ExO

Admin
5,119
2014
1,639
Thank you for the quick response. I tried the last one and changed it from 120 to 0 didn't seem to make a difference in wait time. If you wanted immediate respawn it would be 0 correct?
Yes that would be correct. Try to change it to one instead, or 10 and see if it has any effect.
 
Top