diff options
author | Reid <reidyaro@gmail.com> | 2015-03-29 00:44:31 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-03-29 00:44:31 +0100 |
commit | 821baf466e1a4655c8c6f11a16dc130d5eed9da3 (patch) | |
tree | d5624144b9c6d39b016ad4e13fc8e69c34b776d2 /npc/000-1/fexil.txt | |
parent | 1711b31db3ea20982953b2e34cac3a59b9238997 (diff) | |
download | serverdata-821baf466e1a4655c8c6f11a16dc130d5eed9da3.tar.gz serverdata-821baf466e1a4655c8c6f11a16dc130d5eed9da3.tar.bz2 serverdata-821baf466e1a4655c8c6f11a16dc130d5eed9da3.tar.xz serverdata-821baf466e1a4655c8c6f11a16dc130d5eed9da3.zip |
Update fexil and its shop.
Diffstat (limited to 'npc/000-1/fexil.txt')
-rw-r--r-- | npc/000-1/fexil.txt | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/npc/000-1/fexil.txt b/npc/000-1/fexil.txt index a3631b31..6ec14edc 100644 --- a/npc/000-1/fexil.txt +++ b/npc/000-1/fexil.txt @@ -15,10 +15,22 @@ mesq lg("Interested?"); next; - menu - l("Yes, why not."), L_Accepted, - l("No, sorry."), -; + switch (select("Yes, why not.:I would rather sell some stuff.:No, Sorry.")) + { + case 1: + shop "Bying Bag"; + goto L_Buy; + close2; + end; + case 2: + goto L_Sell; + end; + default: + goto L_No; + } + +L_No: mes ""; mesn; mesq l("Oh... Well, I just started to trade... Thus my technique may not be the best."); @@ -27,10 +39,16 @@ close; -L_Accepted: - shop "Bag"; +L_Buy: + closedialog; + shop "Bag#000-1"; + close; + +L_Sell: closedialog; + shop "Bag#000-1"; + close; OnInit: |