Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
Instance aware in zone port
Browse files Browse the repository at this point in the history
  • Loading branch information
RetributionEQ committed Feb 1, 2025
1 parent 9d3168a commit 1bd6757
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iceclad/#Translocator_Kurione.pl
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# items: 60333
$instanceid = quest::GetInstanceID();

sub EVENT_SAY {
if ($text=~/hail/i) {
quest::say("Hello there. There seems to be some strange problems with the boats in this area. The Academy of Arcane Sciences has sent a small team of us to investigate them. If you need to [" . quest::saylink("travel to North Ro") . "] in the meantime, I can transport you to my companion there. We also just recently discovered that Joshel has been stranded over in the middle of the ocean since the problems with the boats started. If you'd be willing to go see if he's ok, I may be able to [" . quest::saylink("teleport you near there") . "]. Keep in mind though that it will be a one way trip. There is no one on the island able to send you back.");
}
if ($text=~/teleport near there/i) {
$client->MovePC(110, -20288, 3886, -7, 396); # Near Joshel
quest::MovePCInstance(110, $instanceid, -20288, 3886, -7); # Instance aware to Joshel
}
if ($text=~/travel to north ro/i) {
$client->MovePC(34, 304, 2664, -25, 241); # Old Nro
Expand Down

0 comments on commit 1bd6757

Please sign in to comment.