summaryrefslogtreecommitdiff
path: root/npc/airports/rachel.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/airports/rachel.txt')
-rw-r--r--npc/airports/rachel.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/airports/rachel.txt b/npc/airports/rachel.txt
index 88c48cd16..42a2a7e95 100644
--- a/npc/airports/rachel.txt
+++ b/npc/airports/rachel.txt
@@ -8,7 +8,7 @@
//= Official NPCs.
//============================================================
-ra_fild12,295,208,0 script toairplane#rachel 45,1,1,{
+ra_fild12,295,208,0 script toairplane#rachel WARPNPC,1,1,{
end;
OnTouch:
mes "To use the airship, you are required to pay 1,200 zeny or a Free Airship Ticket.";
@@ -21,7 +21,7 @@ OnTouch:
end;
}
if (Zeny >= 1200) {
- set Zeny, Zeny - 1200;
+ Zeny -= 1200;
warp "airplane_01",245,60;
end;
}
@@ -31,4 +31,4 @@ OnTouch:
}
mes "Thank you, please come again.";
close;
-} \ No newline at end of file
+}