View Single Post
  #31  
Old 06-13-2008, 10:52 AM
spider661
Discordant
 
Join Date: Oct 2005
Location: michigain
Posts: 260
Default

ok to see the error yourself make a static zone with a npc that sends you to poair.

if you changed the zone table for that zone set flag_needed to 1
then send to this loc
Code:
#A conversation to Teleport Player to a new zone (poair)
sub EVENT_SAY
{
if ($text =~/Hail/i)
 {
quest::say ("Hello $name. if you would like to travel to {PoA] let me know and I will take you there.");
 }
if ($text =~/^poa$/i)
 {
quest::say ("Off you go!");
quest::movepc(215, 532.0,884.0,-92.6); 
 }
 }
this will crash the zone when talking to the npc with a lvl 1 char.

here is the answer to your question.

i see dwwin.exe not sure if thats it but i don't see either of the other 2 and if I end task it closes the pop up. and it has (send error report) and (don't send) none are underlined.

the error box is titles zone.exe and says zone.exe has encountered a problem and needs to close.
Reply With Quote