summaryrefslogtreecommitdiff
path: root/npc/functions/inn.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/inn.txt')
-rw-r--r--npc/functions/inn.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/functions/inn.txt b/npc/functions/inn.txt
new file mode 100644
index 00000000..50f1afd6
--- /dev/null
+++ b/npc/functions/inn.txt
@@ -0,0 +1,34 @@
+
+function script Inn {
+ if(@npcname$ == "") set @npcname$, strnpcinfo(1);
+ mes "[" + @npcname$ + "]";
+ mes "\"Would you like to rest? It's only " + @Cost + " gp.\"";
+ next;
+ menu
+ "Yes", L_Next,
+ "No", L_close;
+
+L_Next:
+ if (Zeny < @Cost)
+ goto L_NoMoney;
+ Zeny = Zeny - @Cost;
+ heal 10000, 10000;
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Sleep well!\"";
+ next;
+ goto L_close;
+
+L_close:
+ mes "[" + @npcname$ + "]";
+ mes "\"See you.\"";
+ @npcname$ = "";
+ close2;
+ return;
+
+L_NoMoney:
+ mes "[" + @npcname$ + "]";
+ mes "\"You don't have enough money to stay here.\"";
+ next;
+ goto L_close;
+}