From f484928f7163034f94bf71c1bfb3d1abcdc27ee5 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 30 Jun 2018 21:54:22 -0300 Subject: Players under level 25 will have a different item list from Ishi --- npc/003-1/ishi.txt | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) (limited to 'npc/003-1/ishi.txt') diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index 85eb192a6..82356271f 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -13,6 +13,11 @@ mesq l("Hey, it seems like you didn't register as a Monster Hunting Quest participant yet! You can sign up with Aidan."); close; } + if (BaseLevel < 10) { + dispbottom l("##1Bug abuser detected! Automatically banning!!"); + atcommand "@ban 5mn "+strcharinfo(0); + end; + } if (BaseLevel < 37) { @mpq_cost=(BaseLevel ** 2); @@ -28,12 +33,20 @@ close; } - 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", - "FluffyFur","EmptyBottle","RustyKnife","Grenade","Coral","PiouLegs","Cheese","SnakeEgg","RoastedMaggot","BlueDye"; - setarray @Rares$, "BrimmedHat", 5, "IronIngot", 10, "BronzeGift", 10; + if (BaseLevel < 25) { + setarray @Items$, "Bread", + "Candy","Orange","BugLeg", + "CobaltHerb","GambogeHerb", + "MauveHerb","MaggotSlime","ScorpionStinger","SilkCocoon", + "RustyKnife","Coral","PiouLegs","Cheese","RoastedMaggot"; + } else { + 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", + "FluffyFur","EmptyBottle","RustyKnife","Coral","PiouLegs","Cheese","SnakeEgg","RoastedMaggot","BlueDye"; + } + setarray @Rares$, "BrimmedHat", 5, "IronIngot", 10, "BronzeGift", 10, "Grenade", 15; 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); -- cgit v1.2.3-60-g2f50