Heres a simple script I used to look at the Nimbuses that were already in the databse
Also if you want something even more badass checkout.. akkadius's viewer here..
Code:
sub EVENT_SAY {
NIMBUS();
my @asses = sort { $a cmp $b } keys %shit;
if($text=~/hail/i) {
plugin::Whisper("I will show you all the nimbus effects available!");
$client->Message(315, quest::saylink("list nimbus", 1));
}
elsif($text=~/list nimbus/i) {
foreach $ass (@asses) {
$client->Message(335, quest::saylink("$ass", 1));
}
}
elsif($shit{$text} > 0) {
for ($i = 0; $i < 900; $i++) {
$npc->RemoveNimbusEffect($i);
}
$npc->SpellEffect($shit{$text}, 500, 0, 1, 3000, 0);
}
}
sub NIMBUS {
%shit = (
"Arachnophobia Nimbus" => 666,
"Bladestorm Nimbus" => 567,
"Blast of Flame" => 316,
"Blessing of the Devoted" => 413,
"Bristlebane Confetti" => 502,
"Butterfly Nimbus" => 656,
"Cherry Blossom Nimbus" => 659,
"Crocus Nimbus" => 651,
"Crown of Feathers" => 643,
"Crown of Icicles" => 576,
"Crown of Roses Nimbus" => 586,
"Crystalline Shield Nimbus" => 610,
"Daws' Curse" => 478,
"Draught of the Craftsman" => 415,
"Dreamcatcher Nimbus" => 633,
"Evidence of the Party" => 580,
"Fireworks Nimbus" => 665,
"Frozen Vengeance of the Gelidran" => 477,
"Gelidran Aura" => 368,
"Hands of Burning Steam" => 469,
"Lucky Feet" => 475,
"Nightmare Nimbus" => 634,
"Nimbus of Bats" => 548,
"Nimbus of Burning Steps" => 473,
"Nimbus of Candles" => 551,
"Nimbus of Crystal Growth" => 517,
"Nimbus of Daylight" => 511,
"Nimbus of Dirty Hands" => 518,
"Nimbus of Discordant Chains" => 465,
"Nimbus of Discordant Energy" => 464,
"Nimbus of Discordant Souls" => 468,
"Nimbus of Discordant Spines" => 466,
"Nimbus of Dust Storm" => 572,
"Nimbus of Fire and Ice" => 607,
"Nimbus of Gears" => 519,
"Nimbus of Growth" => 453,
"Nimbus of Jack" => 550,
"Nimbus of Lava" => 566,
"Nimbus of Mata Muram" => 467,
"Nimbus of Midnight" => 512,
"Nimbus of Runes" => 570,
"Nimbus of Rushing Water" => 474,
"Nimbus of Stone Hands" => 547,
"Nimbus of the Air Queen" => 457,
"Nimbus of the Army of Light" => 514,
"Nimbus of the Burning Prince" => 447,
"Nimbus of the Burning Pyrilen" => 462,
"Nimbus of the Cloudwalker" => 516,
"Nimbus of the Confused" => 582,
"Nimbus of the Crystal Gelidran" => 459,
"Nimbus of the Dazed" => 581,
"Nimbus of the Dead" => 513,
"Nimbus of the Faceless" => 451,
"Nimbus of the Frozen Gelidran" => 461,
"Nimbus of the Gambler" => 571,
"Nimbus of the Green Thumb" => 579,
"Nimbus of the Howling Wind" => 471,
"Nimbus of the Inquisition" => 509,
"Nimbus of the Jester" => 456,
"Nimbus of the Lover" => 450,
"Nimbus of the Molten Pyrilen" => 460,
"Nimbus of the Obliteration Army" => 515,
"Nimbus of the Ocean" => 613,
"Nimbus of the Ocean Lord" => 458,
"Nimbus of the Plaguebringer" => 446,
"Nimbus of the Rain Keeper" => 452,
"Nimbus of the Riftseeker" => 463,
"Nimbus of the Rumbling Earth" => 470,
"Nimbus of the Storm Lord" => 448,
"Nimbus of the Tempest" => 614,
"Nimbus of the Tranquil" => 455,
"Nimbus of the Void" => 472,
"Nimbus of the Wisp" => 454,
"Path of Decay" => 609,
"Path of Fire Nimbus" => 641,
"Path of Skulls Nimbus" => 545,
"Path of Tunare" => 578,
"Prank of the Fool" => 583,
"Pyrilen Aura" => 369,
"Reeyore's Dismay" => 476,
"Rose Petal Nimbus" => 652,
"Share the Love Nimbus" => 653,
"Sign of the Broken Heart" => 574,
"Solstice Nimbus" => 667,
"Spinefist Nimbus" => 585,
"Swarm of Bees" => 663,
"Tread of the Mountain Walker" => 568,
"Tunare Confetti" => 503
);
}
oh man.. i just noticed the name of the variables... sorry lol .. when i write things quickly they have odd variables names