summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-05-30 19:56:52 -0300
committerJesusaves <cpntb1@ymail.com>2018-05-30 19:56:52 -0300
commitb9171bd0a571da06ed53f2758b5e8a670bd00bcd (patch)
treee1bc51c2303929871554f54c8bc5a59424f60ca9
parent359aa55cf8dc0e1484e0153b46e0f6beccf5d15c (diff)
downloadserverdata-b9171bd0a571da06ed53f2758b5e8a670bd00bcd.tar.gz
serverdata-b9171bd0a571da06ed53f2758b5e8a670bd00bcd.tar.bz2
serverdata-b9171bd0a571da06ed53f2758b5e8a670bd00bcd.tar.xz
serverdata-b9171bd0a571da06ed53f2758b5e8a670bd00bcd.zip
Ops. My bad.
-rw-r--r--npc/functions/bank.txt44
-rw-r--r--npc/scripts.conf1
2 files changed, 23 insertions, 22 deletions
diff --git a/npc/functions/bank.txt b/npc/functions/bank.txt
index 5b2813797..ca5bd1d02 100644
--- a/npc/functions/bank.txt
+++ b/npc/functions/bank.txt
@@ -9,7 +9,7 @@ function script MerchantGuild_Bank {
if (BankVault > 0)
{
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You currently have @@ Esperin on your bank account.",
+ l("You currently have @@ Gold Pieces on your bank account.",
format_number(BankVault)),
l("What do you want to do with your money?");
}
@@ -22,7 +22,7 @@ function script MerchantGuild_Bank {
select
rif(Zeny > 0, l("Deposit.")),
rif(BankVault > 0, l("Withdraw.")),
- l("I'm done.");
+ l("I'm donGP.");
switch (@menu)
{
@@ -32,14 +32,14 @@ function script MerchantGuild_Bank {
menuint
l("Other."), -1,
- rif(Zeny >= 5000, format_number(5000) + " E."), 5000,
- rif(Zeny >= 10000, format_number(10000) + " E."), 10000,
- rif(Zeny >= 25000, format_number(25000) + " E."), 25000,
- rif(Zeny >= 50000, format_number(50000) + " E."), 50000,
- rif(Zeny >= 100000, format_number(100000) + " E."), 100000,
- rif(Zeny >= 250000, format_number(250000) + " E."), 250000,
- rif(Zeny >= 500000, format_number(500000) + " E."), 500000,
- rif(Zeny >= 1000000, format_number(1000000) + " E."), 1000000,
+ rif(Zeny >= 5000, format_number(5000) + " GP."), 5000,
+ rif(Zeny >= 10000, format_number(10000) + " GP."), 10000,
+ rif(Zeny >= 25000, format_number(25000) + " GP."), 25000,
+ rif(Zeny >= 50000, format_number(50000) + " GP."), 50000,
+ rif(Zeny >= 100000, format_number(100000) + " GP."), 100000,
+ rif(Zeny >= 250000, format_number(250000) + " GP."), 250000,
+ rif(Zeny >= 500000, format_number(500000) + " GP."), 500000,
+ rif(Zeny >= 1000000, format_number(1000000) + " GP."), 1000000,
l("All of my money."), -2,
l("I changed my mind."), -3;
@@ -57,7 +57,7 @@ function script MerchantGuild_Bank {
if (@menuret > Zeny)
{
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You do not have enough Esperin on yourself.");
+ l("You do not have enough Gold Pieces on yourself.");
break;
}
@@ -72,7 +72,7 @@ function script MerchantGuild_Bank {
Zeny -= .@deposit; // remove from inventory
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You made a cash deposit of @@ E.", format_number(.@deposit));
+ l("You made a cash deposit of @@ GP.", format_number(.@deposit));
}
}
break;
@@ -83,14 +83,14 @@ function script MerchantGuild_Bank {
menuint
l("Other."), -1,
- rif(BankVault >= 5000, format_number(5000) + " E."), 5000,
- rif(BankVault >= 10000, format_number(10000) + " E."), 10000,
- rif(BankVault >= 25000, format_number(25000) + " E."), 25000,
- rif(BankVault >= 50000, format_number(50000) + " E."), 50000,
- rif(BankVault >= 100000, format_number(100000) + " E."), 100000,
- rif(BankVault >= 250000, format_number(250000) + " E."), 250000,
- rif(BankVault >= 500000, format_number(500000) + " E."), 500000,
- rif(BankVault >= 1000000, format_number(1000000) + " E."), 1000000,
+ rif(BankVault >= 5000, format_number(5000) + " GP."), 5000,
+ rif(BankVault >= 10000, format_number(10000) + " GP."), 10000,
+ rif(BankVault >= 25000, format_number(25000) + " GP."), 25000,
+ rif(BankVault >= 50000, format_number(50000) + " GP."), 50000,
+ rif(BankVault >= 100000, format_number(100000) + " GP."), 100000,
+ rif(BankVault >= 250000, format_number(250000) + " GP."), 250000,
+ rif(BankVault >= 500000, format_number(500000) + " GP."), 500000,
+ rif(BankVault >= 1000000, format_number(1000000) + " GP."), 1000000,
l("All of my money."), -2,
l("I changed my mind."), -3;
@@ -108,7 +108,7 @@ function script MerchantGuild_Bank {
if (@menuret > BankVault)
{
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You do not have enough Esperin on your bank account.");
+ l("You do not have enough Gold Pieces on your bank account.");
break;
}
@@ -123,7 +123,7 @@ function script MerchantGuild_Bank {
BankVault -= .@withdrawal; // remove from bank
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You withdrew a total of @@ E.", format_number(.@withdrawal));
+ l("You withdrew a total of @@ GP.", format_number(.@withdrawal));
}
}
break;
diff --git a/npc/scripts.conf b/npc/scripts.conf
index cfdb008f0..6ebffb0aa 100644
--- a/npc/scripts.conf
+++ b/npc/scripts.conf
@@ -41,6 +41,7 @@
"npc/functions/confused-tree-dict.txt",
"npc/functions/soul_menhir.txt",
"npc/functions/scoreboards.txt",
+"npc/functions/random-talk.txt",
// quest debug
"npc/functions/quest-debug/functions.txt",