Darfumpel_Zirubbel.pl - Quest File
xxxxxxxxxx
1
#########################################################
2
# Darfumpel Zirubbel (ID:50270)
3
# Zone: Rathe Mountains (rathemtn)
4
# Quest: The Etched Stone
5
# Author: a_sewer_rat
6
#########################################################
7
# items: 10191, 1000, 10192
8
9
sub EVENT_SAY {
10
11
if($text=~/Hail/i){
12
quest::say("Hail, $name. I am Darfumpel, master jeweler and proprietor of this shop. How might I assist you today? Perhaps you need a stone [cut] or some jewelry [repaired]?");
13
}
14
if($text=~/cut/i){
15
quest::say("Yes, I use a new gemcutting technique I designed myself. It will bring out the beauty of any gem. However, as arrogant as this may sound, I do not cut just any ordinary stone. They must be rare or of extraordinary quality. Have you an exceptional stone that requires faceting? If so, what type of gem is it?");
16
}
17
if($text=~/repaired/i){
18
quest::say("Although more mundane a task. I do have a shop to keep up and so I repair jewelry for a nominal fee.");
19
}
20
if($text=~/hyacinth/i){
21
quest::say("A hyacinth, eh? That is quite a rare stone. Quite fragile and easily shattered, too. With my new technique, I can assure you I will not destroy the gem, however, it will cost you. 1000 platinum coins is my fee. Provide me with the coin and the gem and I will cut it for you.");
22
}
23
}
24
25
#Handin
26
# 1000pp
27
# 10191 : Uncut Hyacinth (from 13th floor)
28
#Reward
29
# 10192 : Faceted Hyacinth (from 13th floor)
30
31
sub EVENT_ITEM {
32
33
if(plugin::check_handin(\%itemcount,10191=>1) && $platinum>=1000) {
34
quest::say("I have not seen a gem such as this in quite some time! It was not since I dabbled in a bit of necro? Wait? What are you going to use this for? Never mind. I do not wish to know. Here, take your gem and leave!");
35
quest::summonitem(10192); # Item: Faceted Hyacinth
36
quest::exp(1000);
37
}
38
plugin::return_items(\%itemcount);
39
}
40
41
#END of FILE Zone:rathemtn ID:50270 -- Darfumpel_Zirubbel
42
43
Quest Source: 28 May 2022