summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-30 21:54:22 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-30 21:54:22 -0300
commitf484928f7163034f94bf71c1bfb3d1abcdc27ee5 (patch)
tree050f1541b333c6b8830c3bb18b92756b7fb5c410 /npc/003-1
parent88fe944a30dbe0f138172a1910d8f2fbd1ff713d (diff)
downloadserverdata-f484928f7163034f94bf71c1bfb3d1abcdc27ee5.tar.gz
serverdata-f484928f7163034f94bf71c1bfb3d1abcdc27ee5.tar.bz2
serverdata-f484928f7163034f94bf71c1bfb3d1abcdc27ee5.tar.xz
serverdata-f484928f7163034f94bf71c1bfb3d1abcdc27ee5.zip
Players under level 25 will have a different item list from Ishi
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/ishi.txt25
1 files changed, 19 insertions, 6 deletions
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);