Got a problem here with the TL function not sending me where I want to be sent. For example:
#Narrik
#zone OOT
#used to port chars
sub EVENT_SAY
{
if ($text=~ /Hail/i)
{quest::say("Hello there, $name. Would you like to go
to [Butcher] Block?");}
if ($text=~ /butcher/i){quest::say("Well, off you go to
Butcher Block");
quest::movepc(68,1351.96,3234.84,11.03);}
}
This does not send me to butcher block to those coordinates, instead sends me to 3234.75,1351.88,11.75, which is stuck underworld some place.
I have swapped the x,y coordinates but it still does the same thing. I have done both #reloadquest and restarted the server but did not fix it.
In zone.exe file it says:
[Status] Zoning 'Charname' to: Butcher (6

x=1351.959961, y=3234.840088, z=11.030000
So I'm guessing it's sending me to the right place, but still I don't end up anywhere close to that. It's always at the stated loc above.
Just wondering what is going on here. Why are the x,y zone coordinates not being taken?