a_goblin_stone_seer.pl - Quest File
xxxxxxxxxx
1
# NPC: Droga Mobs
2
# Angelox
3
4
sub EVENT_COMBAT{
5
my $random_result = int(rand(100));
6
if(($combat_state == 1) &&($random_result<=20)){
7
quest::say("The time has come for you to taste the might of my magic");
8
}elsif(($combat_state == 1) &&($random_result<=40)){
9
quest::say("The spirits are on my side! It is unwise of you to be here!");
10
}elsif(($combat_state == 1) &&($random_result<=60)){
11
quest::say("How dare you enter our realm!");
12
}elsif(($combat_state == 1) &&($random_result<=80)){
13
quest::say("The spirits are on my side! It is unwise of you to be here!");
14
}elsif($combat_state == 1){
15
quest::say("I shall bathe in the blood of you and your fellows!");}
16
}
17
18
sub EVENT_DEATH_COMPLETE{
19
quest::emote("'s corpse tries to mumble one last spell before falling over dead.");
20
}
21
22
# Droga Mobs
23
Quest Source: 28 May 2022