diff options
author | Reid <reidyaro@gmail.com> | 2016-01-04 15:16:16 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-04 15:16:16 +0100 |
commit | 7a58f1740a3935f400415eb9de69602779412d24 (patch) | |
tree | 47eff749e651c54ec5e1076f4cb07aef954392ad | |
parent | 5fb1a82d994c39a0fdc0fb522abdaf5bd7fc2c40 (diff) | |
download | serverdata-7a58f1740a3935f400415eb9de69602779412d24.tar.gz serverdata-7a58f1740a3935f400415eb9de69602779412d24.tar.bz2 serverdata-7a58f1740a3935f400415eb9de69602779412d24.tar.xz serverdata-7a58f1740a3935f400415eb9de69602779412d24.zip |
Fix lloyd's missing price.
-rw-r--r-- | npc/001-2-19/lloyd.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/001-2-19/lloyd.txt b/npc/001-2-19/lloyd.txt index 69bc8dad..ef226ce2 100644 --- a/npc/001-2-19/lloyd.txt +++ b/npc/001-2-19/lloyd.txt @@ -57,14 +57,16 @@ explain_guild; next; + + .@price = 500; speech 4, - l("The fee is of 500E. So, do you want to register?"); + l("The fee is of @@E. So, do you want to register?", .@price); switch (select (l("Yes."), l("I don't have the time now."))) { case 1: - if (Zeny < 500) + if (Zeny < .@price) { speech 4, l("You don't seem to have enough money on yourself, come back later!"); |