summaryrefslogtreecommitdiff
path: root/npc/sample/bank_test.txt
diff options
context:
space:
mode:
authormc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-29 15:33:40 +0000
committermc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-29 15:33:40 +0000
commite31a6d65da3a27e68e65d3ef826afc7d765d3773 (patch)
treeac7f509dfb3fa9acddade4240afc4fd921b49d48 /npc/sample/bank_test.txt
parent0e39e121319f34bd9b401e4c3421f3f01b683b19 (diff)
downloadhercules-e31a6d65da3a27e68e65d3ef826afc7d765d3773.tar.gz
hercules-e31a6d65da3a27e68e65d3ef826afc7d765d3773.tar.bz2
hercules-e31a6d65da3a27e68e65d3ef826afc7d765d3773.tar.xz
hercules-e31a6d65da3a27e68e65d3ef826afc7d765d3773.zip
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@857 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/bank_test.txt')
-rw-r--r--npc/sample/bank_test.txt45
1 files changed, 22 insertions, 23 deletions
diff --git a/npc/sample/bank_test.txt b/npc/sample/bank_test.txt
index 6a9bfe08d..84a5e599d 100644
--- a/npc/sample/bank_test.txt
+++ b/npc/sample/bank_test.txt
@@ -1,18 +1,18 @@
-// カプラ銀行サービス テストスクリプト
-prontera.gat,162,188,1 script 銀行員カプラ 112,{
+// Bank Test
+prontera.gat,162,188,1 script Bank Test 112,{
cutin "kafra_06",2;
- mes"[銀行員カプラ]";
- mes "カプラ銀行サービスです。";
- mes "毎度ご利用ありがとうございます♪";
- mes "1000zからでのご利用になります。";
+ mes "[Bank Test]";
+ mes "Welcome to Prontera's Bank Test.";
+ mes "You can only deposit a minimal of";
+ mes "1000z. What do you want to do?";
next;
- menu "預ける",BANK_IN,"引き出す",BANK_OUT,"やっぱやめる",B_EXIT2;
+ menu "Deposit",BANK_IN,"Withdraw",BANK_OUT,"Exit",B_EXIT2;
BANK_IN:
- mes"[銀行員カプラ]";
- mes "預ける金額を入力してください♪";
- mes "ちなみに、手数料として";
- mes "預かり金の1%頂きます。";
+ mes "[Bank Test]";
+ mes "You must deposit the same of less";
+ mes "amount of zeny that you carry.";
+ mes "How much do you want to deposit?";
next;
input @kafrabank;
@@ -21,15 +21,15 @@ BANK_IN:
if(@kafrabank+@kafrabank2>Zeny) goto BANK_F;
set Zeny,Zeny-@kafrabank-@kafrabank2;
set #kafrabank,#kafrabank+@kafrabank;
- mes "手数料^135445" + @kafrabank2 + "z^000000頂きますね。";
+ mes "You now have: ^135445" + @kafrabank2 + "z^000000";
goto B_EXIT;
BANK_OUT:
if(#kafrabank==0) goto BANK_F2;
- mes"[銀行員カプラ]";
- mes "現在あなたからお預かりしているのは";
- mes "^135445" + #kafrabank + "^000000Zenyです。";
- mes "引き出す金額を入力してください♪";
+ mes "[Bank Test]";
+ mes "You can only withdraw equally or below this quantity:";
+ mes "^135445" + #kafrabank + "^000000z";
+ mes "How much do you want to withdraw?";
next;
input @kafrabank;
@@ -41,19 +41,18 @@ BANK_OUT:
goto B_EXIT;
BANK_F:
- mes"[銀行員カプラ]";
- mes "持ち金が足りないようですね。";
+ mes "[Bank Test]";
+ mes "You can't withdraw more than ^135445"+ #kafrabank + "^000000z.";
goto B_EXIT2;
BANK_F2:
- mes"[銀行員カプラ]";
- mes "あなたからは、1zも";
- mes "お預かりしていないですよ?";
+ mes "[Bank Test]";
+ mes "Your account is empty, you may not withdraw at this time.";
goto B_EXIT2;
B_EXIT:
- mes "無事に取り引きできました。";
+ mes "Thanks for using depositing";
B_EXIT2:
- mes "またのご利用をお待ちしています♪";
+ mes "Good bye!";
cutin "kafra_06",255;
close;
}