PDA

View Full Version : sanity check: plane of hate entrance criteria


strider51
08-13-2011, 07:34 PM
I have a lvl 58 ranger on my private server. The Server porter that I made, ports to all zones. when i try to port to plane of hate, I get denied by the game and a message says
"I do not yet have enough experience to pass through an inter planar portal"

Works fine on my GM account.


Any ideas ?? what am I missing ?

Thanks,

ps: Plane of fear works fine...

Congdar
08-13-2011, 08:08 PM
check your db. gm status gets you in places regular status doesn't

SELECT short_name, long_name, min_level, min_status FROM zone where short_name like '%hateplane%';

strider51
08-14-2011, 07:58 AM
So looking at this, hateplaneb has a min lvl of 46, and a min status of 0.

I did notice that regular hateplane had a min status of 100....

The quest that I have in POK to send chars to hateplane was the problem..... oddly enough (even thought he GM char was using the same method)

if ($text =~/hateplane/i){
quest::say ("Enjoy your adventure!");
$client->Message(6, "Wizzie casts a spell to translocate you to another place.");
quest::movepc(76, -353.08, -374.8, 3.75); }

if ($text =~/hateplaneb/i){
quest::say ("Enjoy your adventure!");
$client->Message(6, "Wizzie casts a spell to translocate you to another place.");
quest::movepc(186, -393, 656, 3); }

It picked up "hateplane" first, even if you types in hateplaneb.


I removed hateplane and it seems to be working fine. what is the original hateplane anyways?

joligario
08-14-2011, 08:17 AM
If you want it to pick up exactly hateplane or hateplaneb, you can change your partial match to exact match