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

Recent content by cowabunga

  1. C

    Is there anyway to count the number of ancients you currently have?

    title says it all. I want to be able to summon ancients if the count is <=1
  2. C

    Firebirds Blizzard Hydra

    If anyone needs a cs this one is working for me perfectly on T6. T3-T4 in HC is pretty safe I've been using it there too. a side note: passives: dominance, illusionist, blur, unstable anomaly Skills: Blizzard (Apocalypse), Hydra (Mammoth), Blackhole (Blazar), Mirror Image(Duplicates)...
  3. C

    Wizard kiting, firebird

    https://www.thebuddyforum.com/demonbuddy-forum/plugins/trinity/165021-auto-attack.html
  4. C

    auto attack

    Try my Wizardcombat.cs and tell me what you think. This is for apocalypse blizzard and I play hardcore season on t3-t4 with shit gear so that's why my teleport functions the way it does. I think I fixed the auto attack issues.
  5. C

    auto attack

    // Default Attacks if (IsNull(power)) power = null; return power; changed that in my wizard combat.cs and now i don't auto attack anymore
  6. C

    Normal/white auto attacks - DH

    // Default attacks return CombatBase.DefaultPower; change to: return null;
  7. C

    Normal/white auto attacks - DH

    Take your lowest priority skill in my case it was "Blizzard" and make it so it never returns false. ex. // Blizzard if (Hotbar.Contains(SNOPower.Wizard_Blizzard)) { var bestClusterPoint = TargetUtil.GetBestClusterPoint(18f, 45f, false)...
  8. C

    Normal/white auto attacks - DH

    edit the demonhunter combat so it never returns null and uses a default attack. i had to do this on my wizard so i could sit there and just use blizzard without running in to melee auto attack.
  9. C

    Trinity 2.1.5 and QuestTools 2.1.18

    //Use Mantra of Healing active if health is low for shield or spam it if we're using SWK build. bool isSWK = Sets.MonkeyKingsGarb.IsSecondBonusActive; if (CombatBase.CanCast(SNOPower.X1_Monk_MantraOfHealing_v2, CombatBase.CanCastFlags.NoTimer) && Player.PrimaryResource...
  10. C

    Questions for people playing hardcore (crusader) or anyone

    You just start out slow. I lost a geared hc seasonal character a few days ago and made a new one now hes botting on t4 and t5 (not ghom, rifts and bounties). Just don't overstep what your character can do.
  11. C

    Unified Trinity - All-in-one version with the best community mods

    Combat changes for barb are awesome in this version.
  12. C

    [Plugin] LevelSwap

    Got mine working just comment out what it tells you to in the error the monk passives just put a // before them ex. //{"Pacifism", SNOPower.Monk_Passive_Pacifism}, do that in dictionaries.cs
  13. C

    Demonbuddy has stopped working

    I've ran the dependencies installer and I have all the latest .NET framework installed. Doesn't matter if its beta or stable release.
  14. C

    Archon (Combustion) not using Fire Blast

    // Arcane Blast - 2 second cooldown, big AoE if (!useOocBuff && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Wizard_Archon_ArcaneBlast_Fire, CombatBase.CanCastFlags.NoTimer) && TargetUtil.AnyMobsInRange(15, 1)) { return new...
  15. C

    (Barb) - Chilanik's Chain

    public static bool CanUseWarCry { get { return CanCast(SNOPower.X1_Barbarian_WarCry_v2, CanCastFlags.NoTimer) && !Player.IsIncapacitated && true; //(Player.PrimaryResource <=...
Back
Top