Log in

View Full Version : Guild Hall Porter AND WOS


warkid
05-24-2014, 04:23 AM
so i go to this guy and buy stones...... give him the stone and i get a message the portal has been set to blah blah.... i go to stand on portal a box pops up would you like to travel to blah blah and i click yes ... now this is where the problem is...

i can go to lava storm without any issue
i can not zone to kata or wos... when i click yes on the box nothing happens... i have the zones unlocked in database and the account im using is not my gm account (as gm account is pointless for testing)

also in wos feran and chims dont have graphics .... they look like humans... but yet in other zones both mobs have graphics?

demonstar55
05-24-2014, 12:18 PM
You have to edit the guildhall/player.pl, the zones that aren't opened on PEQ are commented out. The NPCs being humans is probably due to either a missing file, or the models are set wrong.

warkid
05-25-2014, 02:59 PM
so what do i do? in Players.pl i have some zones.... do i delete them?

SoltanHeatwave
05-25-2014, 05:42 PM
I had the same issue a while back. This fixed my problem.

Inside of the guild hall quest folder, the player.pl is where your problem lies. This is where the answer for the pop up occurs.

sub EVENT_POPUPRESPONSE {
if ($popupid == 666) { #hateplaneb
quest::movepc(186,-393,656,3);
}
if ($popupid == 674) { #airplane
quest::movepc(71,539,1384,-664);
}
if ($popupid == 15891) { #dragonscale
#quest::movepc(442,-1954,3916,19);
}
if ($popupid == 2708) { #northkarana
quest::movepc(13,1209,-3685,-5);
}
if ($popupid == 4176) { #ecommons
quest::movepc(22,-140,-1520,3);
}
if ($popupid == 534) { #lavastorm
quest::movepc(27,460,460,-86);
}
if ($popupid == 2707) { #tox
quest::movepc(38,-916,-1510,-33);
}
if ($popupid == 2706) { #gfaydark
quest::movepc(54,-441,-2023,4);
}
if ($popupid == 2709) { #dreadlands
quest::movepc(86,9658,3047,1052);
}
if ($popupid == 2284) { #iceclad
quest::movepc(110,385,5321,-17);
}
if ($popupid == 2031) { #coboltscar
quest::movepc(117,-1634,-1065,299);
}
if ($popupid == 3615) { #twilight
quest::movepc(170,-1028,1338,39);
}
if ($popupid == 3794) { #stonebrunt
quest::movepc(100,673,-4531,0);
}
if ($popupid == 6180) { #wallofslaughter
#quest::movepc(300,-943,13,130);
}
if ($popupid == 5733) { #barindu
quest::movepc(283,209,-515,-119);
}
if ($popupid == 8237) { #eastkorlach
#quest::movepc(362,-750,-1002,48);
}
if ($popupid == 8967) { #arcstone
#quest::movepc(369,1630,-279,5);
}
if ($popupid == 999) { #mesa
#quest::movepc(397,-85,-2050,19);
}
if ($popupid == 1000) { #guild banner
#not implemented yet
}
if ($popupid == 416) { #kattacastrum
#quest::movepc(416,-2,-425,-19);
}
if ($popupid == 20543) { #potimea
quest::movepc(219,0,110,8);
}
if ($popupid == 21986) { #brellsrest
#quest::movepc(480,-23,-619,36);
}
}

The # before some of those quest::movepc means that line is commented out so perl wont execute those particular lines. This is why the porter wont send you to those zones.

warkid
05-26-2014, 04:04 AM
i copied and saved the script but still cant go to wos?

Zaela_S
05-26-2014, 01:58 PM
Did you read the line about removing the # in front of the line.

Change this

if ($popupid == 6180) { #wallofslaughter
#quest::movepc(300,-943,13,130);
}

to this

if ($popupid == 6180) { #wallofslaughter
quest::movepc(300,-943,13,130);
}