diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-07-06 16:53:43 +0200 |
---|---|---|
committer | Alige <gauvain.dauchy@free.fr> | 2016-07-06 16:53:43 +0200 |
commit | 39f195b9934f73a5af9c3066fc04501141edeb9c (patch) | |
tree | 31f1c53b462aaaa04f49e98931d8f4cbd4e0ac3e /npc/001-2-9 | |
parent | 435549878eb76e63b1d894d2bf12476b980e511a (diff) | |
download | serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.gz serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.bz2 serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.xz serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.zip |
Fixed few bugs in NPC scripts:
Changed item IDs to their aegisname
Added missing 's' after @@ when needed
Few other fixes in english
Diffstat (limited to 'npc/001-2-9')
-rw-r--r-- | npc/001-2-9/janus.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/001-2-9/janus.txt b/npc/001-2-9/janus.txt index 01985c2a..f97f0be8 100644 --- a/npc/001-2-9/janus.txt +++ b/npc/001-2-9/janus.txt @@ -20,13 +20,13 @@ l("Creating a party has some advantages, it's a pretty good choice!"), l("I remember when I created my first party, we were amazed to share some experience with a small group of adventurer..."), l("Oh! And our party chat was really entertaining, I do highly recommend you to share this fun as well."), - l("The cost to create a party is of @@E, are you interested?", .@party_price); + l("The cost to create a party is of @@ E, are you interested?", .@party_price); if (askyesno () == 1) { if (Zeny < .@party_price) { - speech 5, l("You don't have enough money, bring @@E.", .@party_price); + speech 5, l("You don't have enough money, bring @@ E.", .@party_price); } else { @@ -47,13 +47,13 @@ l("Or, do you want to keep your friendship and your adventure in different groups?"), l("Anyway, the guild creation is perfect for both case! You can keep your current party as is while having a guild to talk and share different items with all of your friends!"), l("The @@ is a one time item, you can use it as many time as you want, but you can only have one!", getitemlink (GuildCertification)), - l("The cost to create a guild is of @@E, are you interested?", .@guild_price); + l("The cost to create a guild is of @@ E, are you interested?", .@guild_price); if (askyesno () == 1) { if (Zeny < .@guild_price) { - speech 5, l("You don't have enough money, bring @@E.", .@guild_price); + speech 5, l("You don't have enough money, bring @@ E.", .@guild_price); } else { |