diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-01-03 22:56:05 +0100 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-01-03 22:56:05 +0100 |
commit | b62fefa196c5a4e9c9e405d48506311df578133d (patch) | |
tree | 371f6966eb2ff6f6d3beae8d2fe39869657c54d0 | |
parent | 7140aa27966fbf97c1abc5f12227654e9740424e (diff) | |
download | serverdata-b62fefa196c5a4e9c9e405d48506311df578133d.tar.gz serverdata-b62fefa196c5a4e9c9e405d48506311df578133d.tar.bz2 serverdata-b62fefa196c5a4e9c9e405d48506311df578133d.tar.xz serverdata-b62fefa196c5a4e9c9e405d48506311df578133d.zip |
Made Arpan giving the players money at the beginning
-rw-r--r-- | db/const.txt | 6 | ||||
-rw-r--r-- | npc/000-2-1/arpan.txt | 10 |
2 files changed, 14 insertions, 2 deletions
diff --git a/db/const.txt b/db/const.txt index f289bd46..f751338b 100644 --- a/db/const.txt +++ b/db/const.txt @@ -204,8 +204,8 @@ SKILL_DYE 502 // 0011 2233 4455 6677 // 0000 1111 2222 3333 // 0123 4567 8901 2345 * -// JJAA PPPP AAK- ---- -// uull eeee rrn- ---- +// JJAA PPPP AAKA ---- +// uull eeee rrnM ---- // 2 ShipQuests_Julia 0 @@ -217,3 +217,5 @@ ShipQuests_Alige 1 ShipQuests_Arpan 4 // 1 ShipQuests_Knife 10 +// 1 +ShipQuests_ArpanMoney 11 diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index 4c531194..c98fd46d 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -128,6 +128,7 @@ l_Menu: l("Could you say me where am I?"), l_Where, l("Where can I found this Julia?"), l_Julia, l("Who are you?"), l_Who, + rif(geta(ShipQuests, ShipQuests_ArpanMoney) == 0, l("Where are my old cloths?")), l_WhereOldClothes, rif(!@equipped, l("What should I add after taking these cloths?")), l_WhatCloth, rif(!@equipped, l("Thank you, I go take them."), l("Nothing, sorry.")), l_Quit; close; @@ -140,6 +141,15 @@ l_Where: next; goto l_Menu; +l_WhereOldClothes: + mesn; + mes g(l("We tried to clean them but the water sea mostly killed them. It's why we gave you these cloths, they are not very good but it's all that we got."), l("We tried to clean them but the water sea mostly killed them. It's why we gave you these cloths, they are not very good but it's all that we got.")); + next; + mes g(l("Oh, now that I remember, we also find some money on your pockets, here they are!"), l("Oh, now that I remember, we also find some money on your pockets, here they are!")); + seta ShipQuests, ShipQuests_ArpanMoney, 1; + set zeny, zeny+25; + goto l_Menu; + l_Julia: mes g(l("She is on the upper level, you can't miss her, she is the only girl of this crew, oh well, except you now!"), l("She is on the upper level, you can't miss her, she is the only girl of this crew.")); next; |