private void Unbuff(object state) { object[] states = (object[])state; JukaLord toDebuff = (JukaLord)states[0]; toDebuff.EndAction(typeof(JukaMage)); if (toDebuff.Deleted) { return; } toDebuff.HitsMaxSeed = (int)states[1]; toDebuff.RawStr = (int)states[2]; toDebuff.RawDex = (int)states[3]; toDebuff.Hits = toDebuff.Hits; toDebuff.Stam = toDebuff.Stam; }
public override void OnThink() { if (DateTime.UtcNow >= m_NextAbilityTime) { JukaLord toBuff = null; foreach (Mobile m in this.GetMobilesInRange(8)) { if (m is JukaLord && IsFriend(m) && m.Combatant != null && CanBeBeneficial(m) && m.CanBeginAction(typeof(JukaMage)) && InLOS(m)) { toBuff = (JukaLord)m; break; } } if (toBuff != null) { if (CanBeBeneficial(toBuff) && toBuff.BeginAction(typeof(JukaMage))) { m_NextAbilityTime = DateTime.UtcNow + TimeSpan.FromSeconds(Utility.RandomMinMax(30, 60)); toBuff.Say(true, "Give me the power to destroy my enemies!"); this.Say(true, "Fight well my lord!"); DoBeneficial(toBuff); object[] state = new object[] { toBuff, toBuff.HitsMaxSeed, toBuff.RawStr, toBuff.RawDex }; SpellHelper.Turn(this, toBuff); int toScale = toBuff.HitsMaxSeed; if (toScale > 0) { toBuff.HitsMaxSeed += AOS.Scale(toScale, 75); toBuff.Hits += AOS.Scale(toScale, 75); } toScale = toBuff.RawStr; if (toScale > 0) { toBuff.RawStr += AOS.Scale(toScale, 50); } toScale = toBuff.RawDex; if (toScale > 0) { toBuff.RawDex += AOS.Scale(toScale, 50); toBuff.Stam += AOS.Scale(toScale, 50); } toBuff.Hits = toBuff.Hits; toBuff.Stam = toBuff.Stam; toBuff.FixedParticles(0x375A, 10, 15, 5017, EffectLayer.Waist); toBuff.PlaySound(0x1EE); Timer.DelayCall(TimeSpan.FromSeconds(20.0), new TimerStateCallback(Unbuff), state); } } else { m_NextAbilityTime = DateTime.UtcNow + TimeSpan.FromSeconds(Utility.RandomMinMax(2, 5)); } } base.OnThink(); }