diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-10 11:45:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-10 11:45:37 -0300 |
commit | 7679e5994642ef019d850b92ee74e564fefd2e57 (patch) | |
tree | 8b97ec3c2581908837ea039979fe6f6b3181c17f | |
parent | f810899c0006e86f46c3e0122ea5b9ec5ea7dfd8 (diff) | |
download | serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.gz serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.bz2 serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.xz serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.zip |
Cleanup all shops. This makes CI passable! (At least in a real environment)
-rw-r--r-- | db/pre-re/item_db.conf | 4 | ||||
-rw-r--r-- | npc/001-1/north_shops.txt | 41 | ||||
-rw-r--r-- | npc/001-2/forge_shops.txt | 37 | ||||
-rw-r--r-- | npc/002-2/bakery.txt | 20 | ||||
-rw-r--r-- | npc/002-2/inya.txt | 12 | ||||
-rw-r--r-- | npc/002-2/shops.txt | 18 | ||||
-rw-r--r-- | npc/002-3/merchant.txt | 19 | ||||
-rw-r--r-- | npc/006-2/shops.txt | 35 | ||||
-rw-r--r-- | npc/009-2/peter.txt | 14 | ||||
-rw-r--r-- | npc/009-2/shops.txt | 75 | ||||
-rw-r--r-- | npc/009-7/shops.txt | 37 | ||||
-rw-r--r-- | npc/010-2/dimonds.txt | 61 | ||||
-rw-r--r-- | npc/011-1/shops.txt | 18 | ||||
-rw-r--r-- | npc/012-1/shops.txt | 22 | ||||
-rw-r--r-- | npc/020-2/shops.txt | 34 | ||||
-rw-r--r-- | npc/026-2/gy_inn_shops.txt | 69 | ||||
-rw-r--r-- | npc/029-2/morgan.txt | 15 | ||||
-rw-r--r-- | npc/029-2/two_arms.txt | 33 | ||||
-rw-r--r-- | npc/035-2/shops.txt | 14 | ||||
-rw-r--r-- | npc/036-2/shops.txt | 28 |
20 files changed, 565 insertions, 41 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index d4b46dd2..94f7b83f 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -190,7 +190,7 @@ item_db: ( AegisName: "ShortBow" Name: "ShortBow" Type: "IT_WEAPON" - Buy: 2000 + Buy: 2500 Sell: 1000 Weight: 600 Atk: 50 @@ -15372,7 +15372,7 @@ item_db: ( AegisName: "PickledBeets" Name: "PickledBeets" Type: "IT_USABLE" - Buy: 100 + Buy: 1500 Sell: 50 Weight: 150 Def: 0 diff --git a/npc/001-1/north_shops.txt b/npc/001-1/north_shops.txt index 88d4c306..36d7df47 100644 --- a/npc/001-1/north_shops.txt +++ b/npc/001-1/north_shops.txt @@ -1,5 +1,42 @@ -001-1,106,105,0 shop Neko NPC101,3006:10,501:25,502:35,533:55,539:87,562:250 -001-1,111,108,0 shop Inar NPC108,1202:5,656:100,586:500,735:500,546:1000,724:500,723:2400 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +001-1,106,105,0 script Neko NPC101,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem TonoriDelight; + sellitem CactusDrink; + sellitem CactusPotion; + sellitem RoastedMaggot; + sellitem Beer; + sellitem ChickenLeg; + .distance = 5; + end; +} + +001-1,111,108,0 script Inar NPC108,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CottonShirt; + sellitem SerfHat; + sellitem CottonShorts; + sellitem CottonBoots; + sellitem DesertShirt; + sellitem CottonHeadband; + sellitem DesertHat; + .distance = 5; + end; +} + 001-1,48,79,0 script Well NPC400,{ callfunc "WaterBottle"; end; diff --git a/npc/001-2/forge_shops.txt b/npc/001-2/forge_shops.txt index 0e39af21..cdbece0a 100644 --- a/npc/001-2/forge_shops.txt +++ b/npc/001-2/forge_shops.txt @@ -1,3 +1,36 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +001-2,30,60,0 script Gungnir NPC311,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingShot; + sellitem SlingBullet; + sellitem ShortBow; + sellitem Arrow; + sellitem IronArrow; + .distance = 5; + end; +} + + +001-2,25,59,0 script Mjolnir NPC377,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + sellitem LeatherShield; + .distance = 5; + end; +} -001-2,30,60,0 shop Gungnir NPC311,903:50,904:0,530:8000,1199:1,529:2 -001-2,25,59,0 shop Mjolnir NPC377,1201:25,522:50,521:500,523:1000,603:1000 diff --git a/npc/002-2/bakery.txt b/npc/002-2/bakery.txt index c1e9ebbe..74c5663f 100644 --- a/npc/002-2/bakery.txt +++ b/npc/002-2/bakery.txt @@ -124,7 +124,25 @@ L_End: close; } -002-2,25,22,0 shop Drabur NPC112,736:100,737:125,738:150,739:150,513:15,519:50,534:45,527:150,508:10 +002-2,25,22,0 script Drabur NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem WhiteCake; + sellitem ChocolateCake; + sellitem OrangeCake; + sellitem AppleCake; + sellitem Cake; + sellitem CherryCake; + sellitem OrangeCupcake; + sellitem Milk; + sellitem XmasCake; + .distance = 5; + end; +} 002-2,21,28,0 script Iormo NPC160,{ mes "[Iormo]"; diff --git a/npc/002-2/inya.txt b/npc/002-2/inya.txt index 787f8a56..aa68fb14 100644 --- a/npc/002-2/inya.txt +++ b/npc/002-2/inya.txt @@ -1,5 +1,15 @@ -002-2,116,61,0 shop #InyaShop NPC32767,4014:2500 +002-2,116,61,0 script #InyaShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SimpleRing; + .distance = 5; + end; +} 002-2,116,61,0 script Inya NPC106,{ mes "[Inya]"; diff --git a/npc/002-2/shops.txt b/npc/002-2/shops.txt index 23bb9a57..0054c290 100644 --- a/npc/002-2/shops.txt +++ b/npc/002-2/shops.txt @@ -1,2 +1,18 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +002-2,68,25,0 script Bartender#Casino NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Cake; + sellitem CherryCake; + .distance = 5; + end; +} -002-2,68,25,0 shop Bartender#Casino NPC112,539:87,513:15,519:50 diff --git a/npc/002-3/merchant.txt b/npc/002-3/merchant.txt index 9f7c67e9..0b6bebfb 100644 --- a/npc/002-3/merchant.txt +++ b/npc/002-3/merchant.txt @@ -1,2 +1,19 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later -002-3,60,47,0 shop Ishyah NPC109,525:400,531:1000,530:8000,1199:2,603:1000 +002-3,60,47,0 script Ishyah NPC109,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem MinersHat; + sellitem MinerGloves; + sellitem ShortBow; + sellitem Arrow, 2; + sellitem LeatherShield; + .distance = 5; + end; +} diff --git a/npc/006-2/shops.txt b/npc/006-2/shops.txt index d7a4766b..9322272b 100644 --- a/npc/006-2/shops.txt +++ b/npc/006-2/shops.txt @@ -1,3 +1,34 @@ -006-2,81,36,0 shop Reathe NPC179,1215:125,654:2500,721:25000,722:15000 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +006-2,81,36,0 script Reathe NPC179,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem ToySabre; + sellitem Cap; + sellitem HighPriestCrown; + sellitem MonsterSkullHelmet; + .distance = 5; + end; +} + +006-2,30,35,0 script Ardra NPC179,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem BottleOfWater; + sellitem RoastedMaggot; + .distance = 5; + end; +} -006-2,30,35,0 shop Ardra NPC179,501:25,502:35,541:100,533:55 diff --git a/npc/009-2/peter.txt b/npc/009-2/peter.txt index e73740e5..b48ebe4a 100644 --- a/npc/009-2/peter.txt +++ b/npc/009-2/peter.txt @@ -1,4 +1,16 @@ -009-2,183,57,0 shop #PeterShop NPC32767,1201:25,522:50,521:500 +009-2,183,57,0 script #PeterShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + .distance = 5; + end; +} 009-2,183,57,0 script Peter NPC157,{ @peter_chain_mail_coal = 10; diff --git a/npc/009-2/shops.txt b/npc/009-2/shops.txt index a50d2d7a..5269ab9b 100644 --- a/npc/009-2/shops.txt +++ b/npc/009-2/shops.txt @@ -1,4 +1,71 @@ -009-2,65,49,0 shop Barkeeper NPC112,539:87,513:15,676:100 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +009-2,65,49,0 script Barkeeper NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Cake; + sellitem Steak; + .distance = 5; + end; +} + +009-2,97,24,0 script Donald NPC120,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingBullet; + sellitem Arrow, 2; + sellitem IronArrow; + sellitem Bow; + sellitem ShortBow, 4000; + .distance = 5; + end; +} + +009-2,123,22,0 script Potions#_M NPC400,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem SlowPoisonPotion; + .distance = 5; + end; +} + +009-2,32,99,0 script General Store#hurnscald NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Milk; + sellitem BottleOfWater; + sellitem CottonShirt; + sellitem CottonShorts; + sellitem Boots; + sellitem SerfHat; + sellitem CottonHeadband; + sellitem CottonGloves; + .distance = 5; + end; +} 009-2,50,48,0 script Receptionist#inn NPC108,{ @npcname$ = "Receptionist"; @@ -6,9 +73,3 @@ callfunc "Inn"; end; } - -009-2,97,24,0 shop Apprentice NPC120,904:0,1199:2,529:2,1200:500,530:4000 - -009-2,123,22,0 shop Potions#_M NPC400,501:25,502:35,567:250,568:250,750:200 - -009-2,32,99,0 shop General Store#hurnscald NPC112,527:150,541:100,1202:5,586:500,528:500,656:100,724:500,741:500 diff --git a/npc/009-7/shops.txt b/npc/009-7/shops.txt index ace80a3c..1d08d55b 100644 --- a/npc/009-7/shops.txt +++ b/npc/009-7/shops.txt @@ -1,3 +1,36 @@ -009-7,34,23,0 shop Bartender#Duels NPC177,539:87,567:250,568:250,541:100,527:150 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +009-7,34,23,0 script Bartender#Duels NPC177,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem BottleOfWater; + sellitem Milk; + .distance = 5; + end; +} + +009-7,27,26,0 script Garcon#Duels NPC180,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem RoastedMaggot; + sellitem PickledBeets; + sellitem ChickenLeg; + sellitem Steak; + sellitem Beer; + .distance = 5; + end; +} -009-7,27,26,0 shop Garcon#Duels NPC180,533:55,4035:1500,562:125,676:100,539:87 diff --git a/npc/010-2/dimonds.txt b/npc/010-2/dimonds.txt index 6fcaa1f4..6d3c729c 100644 --- a/npc/010-2/dimonds.txt +++ b/npc/010-2/dimonds.txt @@ -526,13 +526,66 @@ L_close: } -010-2,24,27,0 shop Bartender NPC112,539:87,567:250,568:250 +010-2,24,27,0 script Bartender NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem IronPotion; + sellitem ConcentrationPotion; + .distance = 5; + end; +} + +010-2,32,34,0 script Waitress NPC139,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CherryCake; + sellitem RoastedMaggot; + sellitem OrangeCupcake; + sellitem ChickenLeg; + sellitem Steak; + .distance = 5; + end; +} + +010-2,85,41,0 script Blacksmith NPC146,{ + shop .name$; + goodbye; + close; -010-2,32,34,0 shop Waitress NPC139,519:50,533:55,534:45,562:125,676:100 +OnInit: + tradertype(NST_ZENY); + sellitem ForestBow; + sellitem IronArrow; + sellitem LeatherShield; + .distance = 5; + end; +} -010-2,85,41,0 shop Blacksmith NPC146,545:5000,529:2,603:1000 +010-2,65,41,0 script General Store#dimond NPC137,{ + shop .name$; + goodbye; + close; -010-2,65,41,0 shop General Store#dimond NPC137,586:500,524:800,544:2000,632:500,528:500,735:500 +OnInit: + tradertype(NST_ZENY); + sellitem CottonShorts; + sellitem FancyHat; + sellitem SilkHeadband; + sellitem CottonSkirt; + sellitem Boots; + sellitem CottonBoots; + .distance = 5; + end; +} 010-2,75,68,0 script Basil NPC107,{ @npcname$ = "Basil the Inn Keeper"; diff --git a/npc/011-1/shops.txt b/npc/011-1/shops.txt index ce409917..8fd551b4 100644 --- a/npc/011-1/shops.txt +++ b/npc/011-1/shops.txt @@ -1,2 +1,18 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +011-1,80,33,0 script Fruit Store NPC400,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem GreenApple; + sellitem RedApple; + sellitem Orange; + .distance = 5; + end; +} -011-1,80,33,0 shop Fruit Store NPC400,719:5,535:6,657:10 diff --git a/npc/012-1/shops.txt b/npc/012-1/shops.txt index 909e70c6..aa411c97 100644 --- a/npc/012-1/shops.txt +++ b/npc/012-1/shops.txt @@ -1,5 +1,25 @@ -012-1,36,99,0 shop #FlowerShop NPC32767,661:20,664:20,665:20,662:20,667:20,663:20,671:20,673:20,669:20,672:20,674:20 +012-1,36,99,0 script #FlowerShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem RedRose; + sellitem PinkRose; + sellitem YellowRose; + sellitem WhiteRose; + sellitem OrangeRose; + sellitem DarkRedRose; + sellitem RedTulip; + sellitem PinkTulip; + sellitem YellowTulip; + sellitem WhiteTulip; + sellitem OrangeTulip; + .distance = 5; + end; +} 012-1,36,99,0 script Blossom NPC163,{ mes "[Blossom]"; diff --git a/npc/020-2/shops.txt b/npc/020-2/shops.txt index b940e99f..74a8315d 100644 --- a/npc/020-2/shops.txt +++ b/npc/020-2/shops.txt @@ -10,8 +10,38 @@ mes "\"Well, pleasant journeys and I hope I haven't been too much of a bother. Good chatting with you.\""; close; } -020-2,25,65,0 shop Bracco NPC135,529:2,530:8000,521:500,603:1000 -020-2,75,24,0 shop Mede NPC103,501:25,502:35,567:250,568:250,826:120,827:240,828:480 +020-2,25,65,0 script Bracco NPC135,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem IronArrow; + sellitem ShortBow; + sellitem Dagger; + sellitem LeatherShield; + .distance = 5; + end; +} + +020-2,75,24,0 script Mede NPC103,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem SmallManaElixir, 120; + sellitem MediumManaElixir, 240; + sellitem LargeManaElixir, 480; + .distance = 5; + end; +} 020-2,111,23,0 script Kane NPC120,{ @npcname$ = "Kane the Inn Keeper"; diff --git a/npc/026-2/gy_inn_shops.txt b/npc/026-2/gy_inn_shops.txt index 532fe9da..be7f9fcd 100644 --- a/npc/026-2/gy_inn_shops.txt +++ b/npc/026-2/gy_inn_shops.txt @@ -1,6 +1,68 @@ -026-2,30,56,0 shop Chef#graveyard NPC300,784:30,785:25,786:30,787:55 -026-2,38,30,0 shop Estrilda NPC301,788:30,789:30,790:50 +026-2,30,56,0 script Chef#graveyard NPC300,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem ZombieNachos; + sellitem LadyFingers; + sellitem JellAhh; + sellitem Snapple; + .distance = 5; + end; +} + +026-2,38,30,0 script Estrilda NPC301,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem BeetleJuice; + sellitem GutBuster; + sellitem BloodWine; + .distance = 5; + end; +} + +026-2,31,119,0 script Leofwin NPC304,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem BugLeg; + sellitem SmallMushroom; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem HardSpike; + sellitem DarkCrystal; + sellitem Root; + sellitem WispPowder; + sellitem SpectrePowder; + sellitem PoltergeistPowder; + .distance = 5; + end; +} + +026-2,22,120,0 script Umfrey NPC302,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem BoneArrows; + sellitem ShockSweet; + .distance = 5; + end; +} 026-2,40,24,0 script Edwin NPC309,{ @npcname$ = "Edwin"; @@ -24,9 +86,6 @@ close; } -026-2,31,119,0 shop Leofwin NPC304,501:25,502:35,518:25,566:50,567:250,568:250,613:10,631:250,740:200,772:350,773:350,774:350 - -026-2,22,120,0 shop Umfrey NPC302,1282:20,1281:500 026-2,25,120,0 script J.P. Morbid NPC321,{ @npcname$ = "J.P. Morbid"; callfunc "Banker"; diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index 5c12dfc3..bd45df7e 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -110,4 +110,17 @@ L_close: close; } -029-2,113,59,0 shop Zitoni NPC103,501:25,502:35,825:50,826:100 +029-2,113,59,0 script Zitoni NPC103,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem TinyManaElixir, 50; + sellitem SmallManaElixir, 100; + .distance = 5; + end; +} diff --git a/npc/029-2/two_arms.txt b/npc/029-2/two_arms.txt index 48dec1cb..f01cf644 100644 --- a/npc/029-2/two_arms.txt +++ b/npc/029-2/two_arms.txt @@ -1,3 +1,32 @@ -029-2,99,25,0 shop Rosen NPC311,903:50,904:0,530:8000,1199:2,529:2 -029-2,112,24,0 shop Toichi NPC377,1201:25,522:50,521:500,523:1000,603:1000 +029-2,99,25,0 script Rosen NPC311,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingShot; + sellitem SlingBullet; + sellitem ShortBow; + sellitem Arrow, 2; + sellitem IronArrow; + .distance = 5; + end; +} + +029-2,112,24,0 script Toichi NPC377,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + sellitem LeatherShirt; + sellitem LeatherShield; + .distance = 5; + end; +} diff --git a/npc/035-2/shops.txt b/npc/035-2/shops.txt index 05a2987e..b864996a 100644 --- a/npc/035-2/shops.txt +++ b/npc/035-2/shops.txt @@ -1,5 +1,17 @@ -035-2,23,38,0 shop Cooky NPC213,539:87,657:10,503:10 +035-2,23,38,0 script Cooky NPC213,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Orange; + sellitem CasinoCoins; + .distance = 5; + end; +} 035-2,23,35,0 script Bunkmaster Phict NPC212,{ @npcname$ = "Bunkmaster Phict"; diff --git a/npc/036-2/shops.txt b/npc/036-2/shops.txt index de381bd8..15292e15 100644 --- a/npc/036-2/shops.txt +++ b/npc/036-2/shops.txt @@ -1,6 +1,30 @@ -036-2,23,38,0 shop Chef Armand NPC211,539:87,676:200,503:10 -036-2,35,22,0 shop Gunney NPC138,1199:4,529:4 +036-2,23,38,0 script Chef Armand NPC211,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Steak, 250; + sellitem CasinoCoins; + .distance = 5; + end; +} + +036-2,35,22,0 script Gunney NPC138,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Arrow, 3; + sellitem IronArrow, 4; + .distance = 5; + end; +} 036-2,23,35,0 script Bunkmaster Daban NPC212,{ @npcname$ = "Bunkmaster Daban"; |