diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-16 23:40:07 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-16 23:40:07 +0000 |
commit | 64c3397ef48083b1842268cf0b691a07fe572b97 (patch) | |
tree | 15763a439ae2b15ee7a636d700b1fe645e7be004 /npc/merchants | |
parent | db1f65c3ed119044754d1a4deefc6cf36461554b (diff) | |
download | hercules-64c3397ef48083b1842268cf0b691a07fe572b97.tar.gz hercules-64c3397ef48083b1842268cf0b691a07fe572b97.tar.bz2 hercules-64c3397ef48083b1842268cf0b691a07fe572b97.tar.xz hercules-64c3397ef48083b1842268cf0b691a07fe572b97.zip |
* Added a return at the end of several scripts. Should deal with errors being shown in due to a recent commit by FlavioJS
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11495 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/merchants')
-rw-r--r-- | npc/merchants/ammo_boxes.txt | 2 | ||||
-rw-r--r-- | npc/merchants/ammo_dealer.txt | 2 | ||||
-rw-r--r-- | npc/merchants/gemstone.txt | 2 | ||||
-rw-r--r-- | npc/merchants/hair_dyer.txt | 2 | ||||
-rw-r--r-- | npc/merchants/kunai_maker.txt | 2 | ||||
-rw-r--r-- | npc/merchants/old_pharmacist.txt | 2 | ||||
-rw-r--r-- | npc/merchants/quivers.txt | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/npc/merchants/ammo_boxes.txt b/npc/merchants/ammo_boxes.txt index 1b935309a..fa1b1d51f 100644 --- a/npc/merchants/ammo_boxes.txt +++ b/npc/merchants/ammo_boxes.txt @@ -124,4 +124,4 @@ function script Func_Casing { delitem getarg(0), .@amount * 500; getitem getarg(1), .@amount; close; -}
\ No newline at end of file +} diff --git a/npc/merchants/ammo_dealer.txt b/npc/merchants/ammo_dealer.txt index 1ec1d74ba..6742b6022 100644 --- a/npc/merchants/ammo_dealer.txt +++ b/npc/merchants/ammo_dealer.txt @@ -98,4 +98,4 @@ function script Bullet_Trade { mes "Prepare again and come back."; close; } -}
\ No newline at end of file +} diff --git a/npc/merchants/gemstone.txt b/npc/merchants/gemstone.txt index 9faa09393..3814ceb7c 100644 --- a/npc/merchants/gemstone.txt +++ b/npc/merchants/gemstone.txt @@ -113,4 +113,4 @@ S_TradeGems: close; } } -}
\ No newline at end of file +} diff --git a/npc/merchants/hair_dyer.txt b/npc/merchants/hair_dyer.txt index eefeed271..6b5cea10f 100644 --- a/npc/merchants/hair_dyer.txt +++ b/npc/merchants/hair_dyer.txt @@ -149,4 +149,4 @@ S_NoDye: mes "Eh?! But you need the item '"+getitemname(getarg(0))+"' to dye your hair "+getarg(1)+"..."; close; } -}
\ No newline at end of file +} diff --git a/npc/merchants/kunai_maker.txt b/npc/merchants/kunai_maker.txt index 32a238e96..ad2adaddd 100644 --- a/npc/merchants/kunai_maker.txt +++ b/npc/merchants/kunai_maker.txt @@ -92,4 +92,4 @@ function script Kunai_Trade { delitem getarg(2),getarg(3)*.@amount; getitem getarg(4),10*.@amount; close; -}
\ No newline at end of file +} diff --git a/npc/merchants/old_pharmacist.txt b/npc/merchants/old_pharmacist.txt index 8bbfb4945..8f872c1e9 100644 --- a/npc/merchants/old_pharmacist.txt +++ b/npc/merchants/old_pharmacist.txt @@ -247,4 +247,4 @@ L_making: mes "Get lost!"; close; } -}
\ No newline at end of file +} diff --git a/npc/merchants/quivers.txt b/npc/merchants/quivers.txt index f9616fb72..c035f9e25 100644 --- a/npc/merchants/quivers.txt +++ b/npc/merchants/quivers.txt @@ -176,4 +176,4 @@ S_BuyQuiver: mes "It's a miracle of science! One that you can experience for yourself if you bring me at least 500 Arrows and 500 Zeny for each Quiver."; close; } -}
\ No newline at end of file +} |