Advertisement
sorvani

Eternal_Spirit.pl

Feb 28th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.92 KB | None | 0 0
  1. sub EVENT_DEATH_COMPLETE {
  2.     # on death of Eternal Spirit, two a soul harvester spawn
  3.     my $add1 = quest::spawn2(71110,0,0,$x+10,$y,$z,$h);
  4.     my $add2 = quest::spawn2(71110,0,0,$x-10,$y,$z,$h);
  5.     $entity_list->GetMobByID($add1)->AddToHateList($client);
  6.     $entity_list->GetMobByID($add2)->AddToHateList($client);
  7. }
  8.  
  9. sub EVENT_ITEM {
  10.     if (plugin::check_handin(\%itemcount, 57081 =>1)) {
  11.         quest::emote("beams and looks at you with pride.");
  12.         quest::say("Greetings, $class. I am both glad to see you and somewhat sad. I know you are here to retrieve my talisman -- which is the reason for my weeping heart. I do understand the importance of taking it for the Ruchu. My heart does warm, though, at the sight of a $class in pursuit of great things. I am envious. Here, take the talisman and protect it with your life. I should like to see it again after all has been set right.");
  13.         quest::summonitem(57083);  
  14.     }
  15.     plugin::return_items(\%itemcount);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement