Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Mater.pl - Quest File
General Info
Quest File
# items: 51121, 51122, 13316, 12161, 18767, 13516 sub EVENT_SPAWN { $x = $npc->GetX(); $y = $npc->GetY(); quest::set_proximity($x - 50, $x + 50, $y - 50, $y + 50); quest::settimer("repeat", 530); } sub EVENT_ENTER { if (plugin::check_hasitem($client, 18767)) { $client->Message(15,"Mater appears a bit startled by your appearance. 'You enjoy sneaking up on people do ya? Come to think of it ya do kind of look like you would make a good rogue. Read the note in your inventory and hand it to me when you wish to start your training.'"); } } sub EVENT_SAY { if ($text=~/hail/i) { if ($faction <= 7) { quest::say("Welcome to the mines of Kaladim!"); } else { quest::say("The word around the mines is that you are not to be trusted. You'd best leave before my dagger finds a new home in your back."); } } elsif ($text=~/ready to earn mining pick 628/i) { if ($faction <= 4) { # Requires high amiable on live quest::say("So you have heard of Mining Pick 628 and feel you are ready to wield one? You shall earn one with the return of the ogre head of [Boog Mudtoe] and the 300 gold pieces he still owes me. Don't return unless you have the head and the 300 gold!!"); } elsif ($faction <= 5) { quest::say("Don't take this personally, but I can't quite trust you with such matters. Maybe a few less Butcherblock bandits would prove your worth."); } else { quest::say("The word around the mines is that you are not to be trusted. You'd best leave before my dagger finds a new home in your back."); } } elsif ($text=~/boog mudtoe/i) { if ($faction <= 4) { # Requires high amiable on live quest::say("Boog Mudtoe is one of the last remaining ogres of the Mudtoe clan. We helped him escape the assault of the Stormguard for a small fee. Unfortunately for him, we have come to believe his head to be more valuable than the fee. We hear there is someone near the port of Butcherblock who knows of the Mudtoe's whereabouts."); } elsif ($faction <= 5) { quest::say("Don't take this personally, but I can't quite trust you with such matters. Maybe a few less Butcherblock bandits would prove your worth."); } else { quest::say("The word around the mines is that you are not to be trusted. You'd best leave before my dagger finds a new home in your back."); } } elsif ($text=~/trades/i) { quest::say("I thought you might be one who was interested in the various different trades, but which one would suit you? Ahh, alas, it would be better to let you decide for yourself, perhaps you would even like to master them all! That would be quite a feat. Well, lets not get ahead of ourselves, here, take this book. When you have finished reading it, ask me for the [second book], and I shall give it to you. Inside them you will find the most basic recipes for each trade. These recipes are typically used as a base for more advanced crafting, for instance, if you wished to be a smith, one would need to find some ore and smelt it into something usable. Good luck!"); quest::summonitem(51121); # Item: Tradeskill Basics : Volume I } elsif ($text=~/second book/i) { quest::say("Here is the second volume of the book you requested, may it serve you well!"); quest::summonitem(51122); # Item: Tradeskill Basics : Volume II } } sub EVENT_ITEM { my $cash = $copper + $silver * 10 + $gold * 100 + $platinum * 1000; if (($faction <= 4) && (plugin::check_handin(\%itemcount, 13316 => 1))) { # Ogre Head if ($cash >= 30000) { # 300 Gold quest::say("Very good!! You found him. His head shall bring us a great reward from the Stormguard. And as for you, here is your Mining Pick 628. Only a member of 628 can wield this fine weapon. We are the only ones who can wield it in such a way as to pierce our foes."); quest::faction(322, 10); # Miners Guild 628 quest::faction(223, -10); # Circle Of Unseen Hands quest::faction(379, -10); # Butcherblock Bandits quest::faction(241, 10); # Deeppockets quest::faction(244, -10); # Ebon Mask quest::exp(5000); quest::summonitem(12161); # Mining Pick 628 } else { quest::givecash($copper, $silver, $gold, $platinum); quest::summonitem(13316); # Ogre Head } } elsif (plugin::check_handin(\%itemcount, 18767 => 1)) { #Small, Folded Note quest::say("Ah, welcome! We could use some fresh blood around here. The name's Mater, and I run this little outfit. Work hard for me, and I will reward you well. Cross me, and you'll find yourself buried under the mine cap. Once you are ready to begin your training please make sure that you see Crovsar Dirkbringer, he can assist you in developing your hunting and gathering skills. Return to me when you have become more experienced in our art, I will be able to further instruct you on how to progress through your early ranks, as well as in some of the various [trades] you will have available to you."); quest::summonitem(13516); #Ruined Miner's Tunic quest::ding(); quest::faction(322, 100); # Miners Guild 628 quest::faction(223, -5); # Circle of Unseen Hands quest::faction(379, -5); # Butcherblock Bandits quest::faction(241, 5); # Deeppoockets quest::faction(244, -15); # Ebon Mask quest::exp(100); } #do all other handins first with plugin, then let it do disciplines plugin::try_tome_handins(\%itemcount, $class, 'Rogue'); plugin::return_items(\%itemcount); } sub EVENT_TIMER { quest::say("Blast all these pesky rats!! Jeet, you need to get one of the new rogues.. I mean miners, to get rid of them!!"); quest::signal(67018,1) } #END of FILE Zone:kaladimb ID:67019 -- Mater
Source: 17 Jan 2022
Quest Source: 28 May 2022