View Single Post
  #7  
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