From c6f3d291e86750502c26c90b0b443b043e4a7c9a Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 2 Dec 2018 15:18:21 -0200 Subject: “If you don't have anything to say, make a good powerpoint” MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- npc/003-8/jhedia.txt | 10 +++++----- npc/006-1/crazyfefe.txt | 4 ++-- npc/016-1/captain.txt | 30 +++++++++++++++--------------- npc/functions/util.txt | 12 ++++++------ 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index b994bd44d..7df739dac 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -72,19 +72,19 @@ L_Menu: // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); switch (@menu) { case 1: - ingot_create(IronOre, IronIngot, 7, 10, 7400); + ingot_create(IronOre, IronIngot, 6, 10, 7400); break; case 2: - ingot_create(CopperOre, CopperIngot, 5, 10, 7500); + ingot_create(CopperOre, CopperIngot, 4, 10, 7500); break; case 3: - ingot_create(TinOre, TinIngot, 5, 10, 7500); + ingot_create(TinOre, TinIngot, 4, 10, 7500); break; case 4: - ingot_create(LeadOre, LeadIngot, 5, 1, 7600); + ingot_create(LeadOre, LeadIngot, 4, 1, 7600); break; case 5: - ingot_create(TitaniumOre, TitaniumIngot, 5, 10, 8000); + ingot_create(TitaniumOre, TitaniumIngot, 4, 10, 8000); break; case 6: ingot_create(IridiumOre, IridiumIngot, 4, 10, 11000); diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 5f7ea720b..3c25440f2 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -276,8 +276,8 @@ OnPetDeath: OnInit: .sex=G_OTHER; .distance=5; - .price=4000; - .delay=(60*40); + .price=400; + .delay=(60*45); .wtime=0; end; } diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt index f9fafa0ba..28a4ea1d8 100644 --- a/npc/016-1/captain.txt +++ b/npc/016-1/captain.txt @@ -5,7 +5,7 @@ // Temporary, placeholder. 016-1,19,29,0 script Captain NPC_NARD,{ - .@price=1500; + .@price=1000; if (BaseLevel < 20) goto L_TooWeak; @@ -28,19 +28,19 @@ L_TTulim: .@x=reputation("Tulim"); if (.@x >= 14) - .@price-=1450; + .@price-=950; else if (.@x >= 12) - .@price-=1250; + .@price-=750; else if (.@x >= 10) - .@price-=1000; + .@price-=600; else if (.@x >= 8) - .@price-=800; + .@price-=400; else if (.@x >= 6) - .@price-=650; + .@price-=250; else if (.@x >= 4) - .@price-=500; + .@price-=175; else if (.@x >= 2) - .@price-=250; + .@price-=100; mes ""; mesn; @@ -78,15 +78,15 @@ L_THurns: .@x=reputation("Hurns"); if (.@x >= 5) - .@price-=1450; + .@price-=950; else if (.@x >= 4) - .@price-=1300; + .@price-=800; else if (.@x >= 3) - .@price-=1000; + .@price-=600; else if (.@x >= 2) - .@price-=800; - else if (.@x >= 1) .@price-=400; + else if (.@x >= 1) + .@price-=200; mes ""; mesn; @@ -125,9 +125,9 @@ L_TNival: if (!$NIVALIS_LIBDATE) .@price=1; // zero could cause weird bugs else if (.@x >= 2) - .@price-=1200; + .@price-=950; else if (.@x >= 1) - .@price-=750; + .@price-=550; mes ""; mesn; diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 6bebfbfb8..330fd7ab3 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -240,9 +240,9 @@ function script nard_time { if (getarg(0) == "Candor") return 22000; if (getarg(0) == "Hurns") - return 24000; + return 28000; if (getarg(0) == "Nival") - return 48000; + return 52000; } // From Hurnscald @@ -250,9 +250,9 @@ function script nard_time { if (getarg(0) == "Candor") return 22000; if (getarg(0) == "Tulim") - return 24000; + return 28000; if (getarg(0) == "Nival") - return 24000; + return 28000; } // From Nivalis @@ -260,9 +260,9 @@ function script nard_time { if (getarg(0) == "Candor") return 46000; if (getarg(0) == "Tulim") - return 48000; + return 52000; if (getarg(0) == "Hurns") - return 24000; + return 28000; } -- cgit v1.2.3-70-g09d2