Crusader_Zixo.pl - Quest File
xxxxxxxxxx
1
#Crusader Zixo starts and ends The Penance quest. This allows a young iksar to replace their guild's starting item if they've lost it.
2
# items: 18271, 18272, 24770, 5130
3
4
sub EVENT_SAY {
5
if($text=~/hail/i){
6
quest::say("Do you come to me empty handed, knave? Did you lose your pike?");
7
}
8
elsif($text=~/no/i){
9
quest::say("Ah... Yes... very good! Continue to work at this pace and the enemies of the Legion of Cabilis will fall beneath the blades of Cazic-Thule! Now move out... To Victory!"); #Could not find original text, modified SK version to fit.
10
}
11
elsif($text=~/yes/i){ #The Penance quest
12
quest::emote("shakes his head and growls. 'That is not good, broodling... Not good at all. You will need to take this note and seek out the Toilmaster immediately. Read it on the way and hope that your incompetence can be overcome. The Crusaders of Greenmist have a pit for you, should this prove to be impossible."); #Could not find original text, modified SK version to fit.
13
quest::summonitem(18271); # Item: Ragged Book
14
}
15
}
16
17
sub EVENT_ITEM {
18
if(plugin::check_handin(\%itemcount, 18272 => 1, 24770 => 1)){ #The Penance quest
19
quest::emote("takes the bag and tome from you and in return gives you the item that you have been thinking of all of this time.");
20
quest::say("Lucky you. You have earned a second chance. Praise Cazic-Thule!");
21
quest::summonitem(5130); # Item: Partisan's Pike
22
quest::ding();
23
}
24
plugin::return_items(\%itemcount);
25
}
26
27
#Submitted by Jim Mills
Quest Source: 28 May 2022