View Single Post
  #9  
Old 02-25-2008, 10:15 AM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Quote:
Originally Posted by trevius View Post
Derail:

Back to the current issue, I am still looking for a way to reset or crash a zone via NPC script/quest.
Try putting
Code:
CORE::Dump();
in your script. Crashes my zone under Linux.

Code:
sub EVENT_SAY {
 if($text =~ /Hail/i) {
        quest::say('Hello. I am the guild master.');
        CORE::dump()

 }
}
Edit: I just tried it in Windows ... says it's not supported there.

Last edited by Derision; 02-25-2008 at 06:19 PM..
Reply With Quote