Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 3.34 KB | None | 0 0
  1. sub EVENT_SAY {
  2.     NIMBUS();  
  3.     my @asses = sort { $a cmp $b } keys %shit;
  4.    
  5.     if($text=~/hail/i) {
  6.         plugin::Whisper("I will show you all the nimbus effects available!");
  7.         $client->Message(315, quest::saylink("list nimbus", 1));
  8.     }
  9.     elsif($text=~/list nimbus/i) {
  10.         foreach $ass (@asses) {
  11.             $client->Message(335, quest::saylink("$ass", 1));
  12.         }
  13.     }
  14.     elsif($shit{$text} > 0) {
  15.         for ($i = 0; $i < 900; $i++) {
  16.             $npc->RemoveNimbusEffect($i);
  17.         }
  18.         $npc->SpellEffect($shit{$text}, 500, 0, 1, 3000, 0);
  19.     }
  20. }
  21.  
  22. sub NIMBUS {
  23. %shit = (
  24. "Arachnophobia Nimbus" => 666,
  25. "Bladestorm Nimbus" => 567,
  26. "Blast of Flame" => 316,
  27. "Blessing of the Devoted" => 413,
  28. "Bristlebane Confetti" => 502,
  29. "Butterfly Nimbus" => 656,
  30. "Cherry Blossom Nimbus" => 659,
  31. "Crocus Nimbus" => 651,
  32. "Crown of Feathers" => 643,
  33. "Crown of Icicles" => 576,
  34. "Crown of Roses Nimbus" => 586,
  35. "Crystalline Shield Nimbus" => 610,
  36. "Daws' Curse" => 478,
  37. "Draught of the Craftsman" => 415,
  38. "Dreamcatcher Nimbus" => 633,
  39. "Evidence of the Party" => 580,
  40. "Fireworks Nimbus" => 665,
  41. "Frozen Vengeance of the Gelidran" => 477,
  42. "Gelidran Aura" => 368,
  43. "Hands of Burning Steam" => 469,
  44. "Lucky Feet" => 475,
  45. "Nightmare Nimbus" => 634,
  46. "Nimbus of Bats" => 548,
  47. "Nimbus of Burning Steps" => 473,
  48. "Nimbus of Candles" => 551,
  49. "Nimbus of Crystal Growth" => 517,
  50. "Nimbus of Daylight" => 511,
  51. "Nimbus of Dirty Hands" => 518,
  52. "Nimbus of Discordant Chains" => 465,
  53. "Nimbus of Discordant Energy" => 464,
  54. "Nimbus of Discordant Souls" => 468,
  55. "Nimbus of Discordant Spines" => 466,
  56. "Nimbus of Dust Storm" => 572,
  57. "Nimbus of Fire and Ice" => 607,
  58. "Nimbus of Gears" => 519,
  59. "Nimbus of Growth" => 453,
  60. "Nimbus of Jack" => 550,
  61. "Nimbus of Lava" => 566,
  62. "Nimbus of Mata Muram" => 467,
  63. "Nimbus of Midnight" => 512,
  64. "Nimbus of Runes" => 570,
  65. "Nimbus of Rushing Water" => 474,
  66. "Nimbus of Stone Hands" => 547,
  67. "Nimbus of the Air Queen" => 457,
  68. "Nimbus of the Army of Light" => 514,
  69. "Nimbus of the Burning Prince" => 447,
  70. "Nimbus of the Burning Pyrilen" => 462,
  71. "Nimbus of the Cloudwalker" => 516,
  72. "Nimbus of the Confused" => 582,
  73. "Nimbus of the Crystal Gelidran" => 459,
  74. "Nimbus of the Dazed" => 581,
  75. "Nimbus of the Dead" => 513,
  76. "Nimbus of the Faceless" => 451,
  77. "Nimbus of the Frozen Gelidran" => 461,
  78. "Nimbus of the Gambler" => 571,
  79. "Nimbus of the Green Thumb" => 579,
  80. "Nimbus of the Howling Wind" => 471,
  81. "Nimbus of the Inquisition" => 509,
  82. "Nimbus of the Jester" => 456,
  83. "Nimbus of the Lover" => 450,
  84. "Nimbus of the Molten Pyrilen" => 460,
  85. "Nimbus of the Obliteration Army" => 515,
  86. "Nimbus of the Ocean" => 613,
  87. "Nimbus of the Ocean Lord" => 458,
  88. "Nimbus of the Plaguebringer" => 446,
  89. "Nimbus of the Rain Keeper" => 452,
  90. "Nimbus of the Riftseeker" => 463,
  91. "Nimbus of the Rumbling Earth" => 470,
  92. "Nimbus of the Storm Lord" => 448,
  93. "Nimbus of the Tempest" => 614,
  94. "Nimbus of the Tranquil" => 455,
  95. "Nimbus of the Void" => 472,
  96. "Nimbus of the Wisp" => 454,
  97. "Path of Decay" => 609,
  98. "Path of Fire Nimbus" => 641,
  99. "Path of Skulls Nimbus" => 545,
  100. "Path of Tunare" => 578,
  101. "Prank of the Fool" => 583,
  102. "Pyrilen Aura" => 369,
  103. "Reeyore's Dismay" => 476,
  104. "Rose Petal Nimbus" => 652,
  105. "Share the Love Nimbus" => 653,
  106. "Sign of the Broken Heart" => 574,
  107. "Solstice Nimbus" => 667,
  108. "Spinefist Nimbus" => 585,
  109. "Swarm of Bees" => 663,
  110. "Tread of the Mountain Walker" => 568,
  111. "Tunare Confetti" => 503
  112. );
  113.  
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement