summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-01 21:41:28 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-01 21:41:28 -0300
commit7531459bc4fe0180abfc228d36ec8cf6032608f1 (patch)
tree581469e5f0a9a1401961e0edea0cf20de20756f9
parent7bb5e73c2c46723a4fe67c119d447fbd7ffdbfbb (diff)
downloadserverdata-7531459bc4fe0180abfc228d36ec8cf6032608f1.tar.gz
serverdata-7531459bc4fe0180abfc228d36ec8cf6032608f1.tar.bz2
serverdata-7531459bc4fe0180abfc228d36ec8cf6032608f1.tar.xz
serverdata-7531459bc4fe0180abfc228d36ec8cf6032608f1.zip
Add some extra rewards on Ishi for higher-level players.
We need to make Ishi stronger to compete with crafting.
-rw-r--r--npc/003-1/ishi.txt20
1 files changed, 19 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt
index 699a1ef6b..6d063584d 100644
--- a/npc/003-1/ishi.txt
+++ b/npc/003-1/ishi.txt
@@ -43,11 +43,29 @@
setarray @Items, Bread, Croconut,Plushroom,
RedApple,Beer,Candy,Orange,ChocolateBar,BugLeg,CoinBag,
Coal,SnakeSkin,CottonCloth,GrassSeeds,HardSpike,CobaltHerb,GambogeHerb,
- MauveHerb,IronOre,MaggotSlime,RawLog,ScorpionStinger,SilkCocoon,TreasureKey,
+ MauveHerb,CopperOre,MaggotSlime,RawLog,ScorpionStinger,SilkCocoon,TreasureKey,
WhiteFur,EmptyBottle,RustyKnife,Coral,PiouLegs,Cheese,SnakeEgg,RoastedMaggot,BlueDye;
}
setarray @Rares, BrimmedHat, 5, IronIngot, 10, BronzeGift, 10, Grenade, 15;
+ // Push blueprints based on your Job Level
+ array_push(@Rares, AlchemyBlueprintA);
+ array_push(@Rares, (JobLevel/4));
+ array_push(@Rares, EquipmentBlueprintA);
+ array_push(@Rares, (JobLevel/4));
+
+ // Additional Loot
+ if (BaseLevel >= 45) {
+ array_push(@Items, IronOre);
+ array_push(@Items, SilverOre);
+ array_push(@Items, TinOre);
+ }
+ if (BaseLevel >= 75) {
+ array_push(@Items, TitaniumOre);
+ array_push(@Items, IridiumOre);
+ array_push(@Items, GoldenOre);
+ }
+
mesn l("Ishi, the Rewards Master");
mesq l("Welcome! I see you have @@ Monster Points. Would you like to exchange some of those for items?", Mobpt);
next;