Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Q&A

Quests::Q&A This is the quest support section

Reply
 
Thread Tools Display Modes
  #1  
Old 05-19-2008, 05:10 PM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

Actually, you don't need to worry about spawn timers with quest::repopzone(). That command doesn't touch timers at all, so any NPC that was up before the command was used will appear after. This is useful for stat changes, or to reset every NPC to their default positions. quest::depopzone(1) will reset all NPCs to an unspawned state, and in that case you'll have to wait for their timers to expire before they pop back up.
Reply With Quote
  #2  
Old 05-19-2008, 05:27 PM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

Quote:
Originally Posted by cavedude View Post
Actually, you don't need to worry about spawn timers with quest::repopzone(). That command doesn't touch timers at all, so any NPC that was up before the command was used will appear after. This is useful for stat changes, or to reset every NPC to their default positions. quest::depopzone(1) will reset all NPCs to an unspawned state, and in that case you'll have to wait for their timers to expire before they pop back up.
I think what I said may have been a little confusing. Let me rephrase...

Example 1 (what I was thinking):
Zone into the sleeper. Kill a regular mob, which has a 4 hour (14400 second) respawn as defined in spawn2 -> respawntime. Repop the zone, that mob won't respawn until the 4 hours is up (which is stored in spawn2 -> timeleft).

Example 2 (what you're describing):
Zone into fearplane. Wait ~3.25 days (281232 seconds) +- ~9 hours for Cazic Thule to spawn. Repop the zone, he'll still be up.

So, you are correct, it doesn't touch spawn timers, but it also doesn't touch respawn timers, which is the only problem I've had. I'm not sure if there's a way in-game to avoid example 1, so what I did as a workaround (while testing quests) is run this query against my database to clear the timers:
Code:
UPDATE spawn2 SET timeleft = 0 WHERE spawngroupID IN (???, ???, ???)
of course replacing the ???'s with the applicable spawngroup ID.

Hopefully that made more sense.
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote
  #3  
Old 05-20-2008, 01:52 AM
Aonelyn's Avatar
Aonelyn
Hill Giant
 
Join Date: Jul 2005
Location: Felwithe
Posts: 192
Default

thanks for the help guys, so how exactly would i write this to make it basically #repop the zone, after 45 mins of hailing the npc?
__________________
lol.
Reply With Quote
  #4  
Old 05-20-2008, 10:09 AM
Cripp's Avatar
Cripp
Discordant
 
Join Date: Oct 2003
Location: The Shire
Posts: 474
Default

Code:
sub EVENT_SAY
{
	if ($text=~/hail/i)
	{
		quest::say("Hail $name!");
		if (!defined($qglobals{$zonerepop}))
		{
			quest::say("zone will depop in 45 mins!");
			quest::settimer("zrepop",888888);
			quest::setglobal("zonerepop",1,0,M45);
		}

	}
}

sub EVENT_TIMER
{
	if ($timer eq "zrepop")
	{
		quest::repopzone();
		quest::delglobal("zonerepop");
	}
}
just change the 8888888 to whatever 45 minutes would be..
__________________
Nug Blazers - ServerOP / founder
^^comming... later!

www.nugblazers.com

Last edited by Cripp; 05-26-2008 at 07:27 PM..
Reply With Quote
  #5  
Old 05-20-2008, 11:08 AM
Aonelyn's Avatar
Aonelyn
Hill Giant
 
Join Date: Jul 2005
Location: Felwithe
Posts: 192
Default

Thanks for all the help!
__________________
lol.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 01:02 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3