diff options
author | omattornot <m.vuoso@laposte.net> | 2016-07-15 23:06:56 +0200 |
---|---|---|
committer | omatt <m.vuoso@laposte.net> | 2016-07-19 21:25:19 +0200 |
commit | e3b08750279de7aba31193d4826de95600afb815 (patch) | |
tree | 33983c49d6df23a999d568ae712ec28eb552b141 | |
parent | f07833c3b730f461b0386fe4937361eb8114ac27 (diff) | |
download | serverdata-e3b08750279de7aba31193d4826de95600afb815.tar.gz serverdata-e3b08750279de7aba31193d4826de95600afb815.tar.bz2 serverdata-e3b08750279de7aba31193d4826de95600afb815.tar.xz serverdata-e3b08750279de7aba31193d4826de95600afb815.zip |
change the arpan dialogue about money in old habit
-rw-r--r-- | npc/000-2-1/arpan.txt | 18 | ||||
-rw-r--r-- | npc/000-2-3/elmo.txt | 3 |
2 files changed, 18 insertions, 3 deletions
diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index 3c3661fd..4d47c548 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -149,7 +149,8 @@ L_Menu: lg("Could you tell me where I am?"), L_Where, lg("Where can I find Julia?"), L_Julia, l("Who are you?"), L_Who, - rif(getq(ShipQuests_ArpanMoney) == 0, l("Where are my old clothes?")), L_WhereOldClothes, + rif(getq(ShipQuests_ArpanMoney) == 1, lg("Do you know what happened to the gold I had when you guys saved me?")), L_WhereMoney, + rif(getq(ShipQuests_ArpanMoney) < 2, l("Where are my old clothes?")), L_WhereOldClothes, rif(!.@equipped, lg("What should I do after taking these clothes?")), L_WhatCloth, rif(!.@equipped, l("Thank you, I'll take them and put them on.")), -, l("Nothing, sorry."), -; @@ -197,7 +198,20 @@ L_WhereOldClothes: mes lg("Oh, now that I remember, we also found some money in your pockets, here it is!"); next; - setq ShipQuests_ArpanMoney, 1; + setq ShipQuests_ArpanMoney, 2; + .@q = getq(ShipQuests_Arpan); + Zeny = Zeny + 10; + message strcharinfo(0), l("You receive @@ E!", 10); + + goto L_BeforeMenu; + +L_WhereMoney: + mes ""; + mesn; + mesq lg("Oh right, I totally forgot about that, here you go."); + next; + + setq ShipQuests_ArpanMoney, 2; .@q = getq(ShipQuests_Arpan); Zeny = Zeny + 10; message strcharinfo(0), l("You receive @@ E!", 10); diff --git a/npc/000-2-3/elmo.txt b/npc/000-2-3/elmo.txt index 0ef588e9..74e5beec 100644 --- a/npc/000-2-3/elmo.txt +++ b/npc/000-2-3/elmo.txt @@ -21,7 +21,7 @@ sailortalk; } - if (getq(ShipQuests_ArpanMoney) == 1) + if (getq(ShipQuests_ArpanMoney) == 2) { got_money; } @@ -45,6 +45,7 @@ case 2: speech 5, l("Hehe, sometimes he gets his head in the clouds, You should go ask him about that."); + setq ShipQuests_ArpanMoney, 1; break; } |