Advertisement
NatedogServer

player_arcstone

Mar 10th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.81 KB | None | 0 0
  1. sub EVENT_CLICKDOOR {
  2.     if($doorid == 10) {
  3.         if(quest::istaskcompleted(106) || $status >= 200) {
  4.             plugin::InstancePOPUP("skylance", 40, 1337, "The floating tower where Envy commands his troops. Here is where you will come face to face with the master
  5.                                             of jealousy. Are you brave enough to best a deadly sin?");
  6.         } else {
  7.             $client->Message(315,"Only the strongest may proceed and you have yet to prove yourself. This tower would make short work of your being.");
  8.         }
  9.     }
  10. }
  11.  
  12. sub EVENT_POPUPRESPONSE {
  13.  
  14.     if($popupid == 1337) {
  15.         if($ulevel > 39) {
  16.             plugin::InstanceResponse("skylance", -576, -85, 29, 21600);
  17.         }
  18.         else
  19.         {
  20.             $client->Message(5,"A mysterious voice, 'Even though you have bested the colossus, you must wait until your 40th season to enter the floating tower of Skylance.");
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement