Clerk_Doval.pl - Quest File
x
1
# items: 18240, 18250, 12460, 12461
2
sub EVENT_SAY {
3
if ($text=~/hail/i) {
4
quest::emote("takes a sip of lager and looks up at you. 'Ahh! An adventurer of sorts? Looking for work, are we? If you have the time, I might have a bit of a [proposition] for you.'");
5
}
6
if ($text=~/proposition/i) {
7
quest::say("I was sent by the Legion to deliver a restraining order to a few of the troopers. They have been ordered to stay away from the tavern. They have spent too much time drinking and not enough training. I am to have them initial the restraint order list, but my feet are killing me. Perhaps you could [deliver the restraining order]?");
8
}
9
if ($text=~/restraining order/i) {
10
quest::say("Here is the restraint order. Go to the troopers and ask them to [sign the restraining order]. Also, make sure to have them sign it in alphabetical order. I am a very big stickler about this. The troopers' names are as follows; Ozlot, Ogmire, Nish Nish, Frogzin, Gummin, Inkin, Roklon, Taer, Fryp and Selbat. When all is done, I shall pay you.");
11
quest::summonitem(18240); #Legion Order (0 signed)
12
}
13
}
14
15
sub EVENT_ITEM {
16
if (plugin::check_handin(\%itemcount, 18250 => 1)) { #Legion Order (all signed)
17
quest::say("Thank you so much. I am so glad I did not have to deal with such a rowdy band of troopers as these. Please take some coin and perhaps a book from my personal library.");
18
quest::summonitem(quest::ChooseRandom(12460, 12461)); #The Code of Combat, The Book of Knowledge - No IDs for The History of Combat or The Tome of Combat
19
quest::givecash(0,5,0,0);
20
quest::faction(440,440); #Cabilis Residents
21
quest::faction(441,30); #Legion of Cabilis
22
quest::exp(1200);
23
}
24
plugin::return_items(\%itemcount);
25
}
26
#END of FILE Zone:cabeast ID:630 -- Clerk_Doval
27
Quest Source: 28 May 2022