What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[Crystal Of Instanity] lvl 85 item use pluggin

khali

New Member
Joined
Apr 29, 2012
Messages
7
To all you awesome wonderful coders out there, I saw a plugin made for the WoW anniversary buff and it works wonders. I would like someone to make a plugin that will make use of the [Crystal of Insanity] item which can be found in the caves of spirit in timeless isle. It is a 1 hour buff, which you can lose if you die, the item itself has a 15min cd. if you need a tester yell, its a powerful item to have for levelling/questing from 85+

Use of item: 500 all stats for 1 hour, Counts as both a battle and Guardian elixir.
CoolDown: 15mins
Level Requirement: 85
Death: You lose the buff if you die
Reapply: If you have the buff you can click on the Crystal Of Insanity when off cool down to refresh your buff






Thanks in advance
 
So If you die in 10 minutes he need to rebuff? And buff last 1 hour?

example

you apply the buff at 1pm, Crystal is on CD for 15mins. So if you die at 1:10pm you have to wait till 1:15pm to reapply the Crystal Buff.

does that clear it up ?
 
example

you apply the buff at 1pm, Crystal is on CD for 15mins. So if you die at 1:10pm you have to wait till 1:15pm to reapply the Crystal Buff.

does that clear it up ?

Add this before the Line 42 in the WoWAnniversary plugin (if you are using it tho) :

Code:
WoWItem myElixir = Me.BagItems.FirstOrDefault(item => item.Entry == 86569);

if (Me != null && Me.IsValid)
{
    if (!Me.Mounted && !Me.IsOnTransport && !Me.IsResting && !Me.IsDead && !Me.HasAura(127230))
    {
        if (myElixir != null && myElixir.CooldownTimeLeft == TimeSpan.Zero)
        {
            myElixir.Use();
        }
    }
}

Enjoy
 
Back
Top