View Single Post
  #1  
Old 09-09-2017, 05:26 AM
rixcraven
Sarnak
 
Join Date: Nov 2008
Location: UK
Posts: 57
Default Can't get into guildhall...Help

This is the script for the NPC that sends you to your guild lobby... it works great!, BUT.. when in the guild lobby, the doors to guild hall are in place, but clicking on them just brings up DOOR 42"close door" "open door" "edit door" in the message bar?
I've tried all the fixes to do with guild hall doors, and am desparate! please shed some knowledge on this.
BTW, I'm using RoF2 as the client.
Door 42 is obviously the issue, but I'm darned if I can sort it.




sub EVENT_SAY {

if ($text=~/hail/i) {

if ($class =~ Wizard) {

quest::say("Greetings $name, do you seek [training] to become a High $class? Or just need to be [translocated] somewhere?");

}

else {

quest::say("Hello mortal. Do you seek to be [sent] somewhere?");

}

}

elsif ($text=~/training/i) {

if ($class =~ Wizard) {

quest::say("I have no tasks for you today to become a High $class.");

}

}

elsif ($text=~/sent/i) {

quest::say("State the short name of the zone you wish to go.");
$port0 = 1;
$teleName = $name;

}

else {

if ($port0 =~ 1) {

$portApproved = 1;

if ($text =~ poknowledge || $text =~ cshome) {

$portApproved = 0;

}

if ($portApproved =~ 1) {

if ($teleName =~ $name) {

quest::say("$name has been approved for translocation to $text.");
quest::say("Attempting to teleport $name to $text.");
quest::say("Remember, to teleport back to Crushbone say #zonestart.");
quest::zone($text);

}

}

else {

quest::say("Translocation to $text is not possible, $name.");

}

$port0 = 0;
$teleName = "";

}

}

}

}

sub EVENT_ATTACK {

quest::emote("laughs at you.");
quest::say("None shall defeat the mighty Elite Squads.");

}


sub EVENT_DEATH {

quest::say("This...is...impossi--");
quest::me("You hear Solusek Ro's name chanted quietly, as High Wizard Vivi's remains disappears.);

}


sub EVENT_SLAY {

quest::say("None shall fight the High Wizard Council and live to tell the tale!");

}
Reply With Quote