diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-19 11:22:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-19 11:22:43 -0300 |
commit | c3714e86846b35c9325308b6a750a48bd1c9ccc0 (patch) | |
tree | 9beaff8b1eb25d33e7d52b4974490a03755d7401 /npc | |
parent | 4886a23a484b9d3e1bf7deb783eb05c79474c1c1 (diff) | |
download | serverdata-c3714e86846b35c9325308b6a750a48bd1c9ccc0.tar.gz serverdata-c3714e86846b35c9325308b6a750a48bd1c9ccc0.tar.bz2 serverdata-c3714e86846b35c9325308b6a750a48bd1c9ccc0.tar.xz serverdata-c3714e86846b35c9325308b6a750a48bd1c9ccc0.zip |
Polishing
Diffstat (limited to 'npc')
-rw-r--r-- | npc/018-5-2/leona.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/npc/018-5-2/leona.txt b/npc/018-5-2/leona.txt index ffb866ae1..425168190 100644 --- a/npc/018-5-2/leona.txt +++ b/npc/018-5-2/leona.txt @@ -52,6 +52,12 @@ // TODO: Check if item is OK switch (.@id) { + // Specific Exchange + /* + case Backsword: + leona_exchange(.@id, ShortSword); + break; + */ // Generic Exchange case LeatherShirt: @@ -64,6 +70,7 @@ case CaveSnakeSkin: case BlackMambaSkin: leona_exchange(.@id, 0); + break; default: mesn; mesq l("I have no interest on this item."); @@ -102,5 +109,7 @@ } return; } - +OnInit: + .distance=5; + end; } |