Jump to content

Pasterke

Members
  • Posts

    165
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Pasterke got a reaction from Shinzon in Level 1-90 - Quest Profile Project Code Zed14   
    It's only the starting area quests that are different for each race.
    Once they are level 5, move them to a capital city and start a quest line for Alliance or Horde.
    example Alliance : goto SW, pick up Eversong Wood Quests, Westfall Quests, Redridge Mountain Quests, Duskwood Quests,  Strangleton Quests, Western(35-40) + Eastern Plaguelands Quests (40+), Burning Steppes, Swamp of Sorrow, Blasted Lands.
    You setup the same quest line for each faction, it's easier than setup different quest lines for each race.
     
  2. Like
    Pasterke got a reaction from Droidz in How to add players unit to a list ?   
    it's ok, everything is working now, I uploaded a version for everyone :) Ty for the help.
  3. Like
    Pasterke got a reaction from Droidz in Spellcasting   
    nvm, I made my own solution :)
  4. Like
    Pasterke got a reaction from Droidz in Use of talents failed   
    There's is no base spellname for Nether Tempest. You only get that skill if you choose that specific talent.
     
    If you have Faerie Swarm and you cast Faerie Fire, then he casts Faerie Swarm. The only thing then, when he look for the debuff, it's Faerie Swarm and not Faerie Fire.
     
    I made a solution for that one ;
    new SpellState("Faerie Fire", 23, context => !MeFeralSettings.CurrentSetting.HaveFaerieSwarm && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Fire")), false, true, false, false, true, true, 0, false, false, false, false), new SpellState("Faerie Fire", 22, context => MeFeralSettings.CurrentSetting.HaveFaerieSwarm && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Swarm")), false, true, false, false, true, true, 0, false, false, false, false), [Setting] [DefaultValue(false)] [Category("Druid Feral")] [DisplayName("Faerie Swarm Talent")] [Description("Put on true if you have that Talent")] public bool HaveFaerieSwarm { get; set; }
  5. Like
    Pasterke got a reaction from Ohren in Target Buff   
    Target Buff is only checking if the debuff is on the target, not who put the debuff on the target.
     
    In raid, with 3 feral druids, he never put rip, rake if another druid provide the debuff.
     
    So, you need a check from who is the debuff.
    public bool debuffExists(int Debuff, WoWUnit onTarget) { if (onTarget != null) { WoWAura aura = onTarget.GetAllAuras().FirstOrDefault(a => a.SpellId == Debuff && a.CreatorGuid == Me.Guid); if (aura != null) { return true; } } return false; }
×
×
  • Create New...