WoW Combat Assister menu

User Tag List

Page 16 of 69 FirstFirst ... 12131415161718192066 ... LastLast
Results 226 to 240 of 1023
  1. #226
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prometheus View Post
    ----Zazazu, anyway you could add an option for loading custom rotations?
    Currently im working at new version of WoW.CA with support x64 version and multy-routine engine. In short future i'm released this version. Now y can write own routine and use for self (or send me for use for all).

    WoW Combat Assister
  2. #227
    spell19's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    31
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi!

    How can I add interrupt spells at DH Havoc
    (Consume Magic and the racial ability blood elf)
    And if instead of taunt to use the mill
    (Chaos Nova) ?
    Last edited by spell19; 02-27-2017 at 03:22 PM.

  3. #228
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spell19 View Post
    Hi!

    How can I add interrupt spells at DH
    (Consume Magic and the racial ability blood elf)
    And if instead of taunt to use the mill
    (Chaos Nova) ?
    Kick interruptable spell:
    PHP Code:
    Rotation_AddSpell(ClassSpell.ConsumeMagic, new[] { 
                    
    Criteria(SpellCriteriaType.Kick00CriteriaTarget.TargetCriteriaCondtion.Have
    }); 
    Kick ANY spell.
    PHP Code:
    Rotation_AddSpell(ClassSpell.Tauren_WarStomp, new[] { 
                    
    Criteria(SpellCriteriaType.Kick01CriteriaTarget.TargetCriteriaCondtion.Have
    }); 
    1 -- Ignore spell status for interruptable.

    For AoE stun/silence use range check (full code):
    PHP Code:
    Rotation_AddSpell(ClassSpell.Tauren_WarStomp, new[] {
                    
    Criteria(SpellCriteriaType.Kick01CriteriaTarget.TargetCriteriaCondtion.Have),
                    
    Criteria(SpellCriteriaType.Range08CriteriaTarget.TargetCriteriaCondtion.Have)
    }); 
    Last edited by Zazazu; 02-27-2017 at 03:31 PM.

  4. Thanks spell19 (1 members gave Thanks to Zazazu for this useful post)
  5. #229
    spell19's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    31
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    automatic update overwrites the files =(
    and creates the file if the mode "read only"
    Interested in blood elves and Tauren in the code

    Thank you very much!

  6. #230
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spell19 View Post
    automatic update overwrites the files =(
    and creates the file if the mode "read only"
    Interested in blood elves and Tauren in the code

    Thank you very much!
    In start topic (and in thread) i write how to create own rotation:
    You can create/modify standart routine. Custom rotation saved by path {APP_DIR}\Dynamics\MyClass\{CLASSNAME}\{CLASSSPEC}.cs
    ClassSpell.Tauren_WarStomp = 20549
    Last edited by Zazazu; 02-27-2017 at 03:45 PM.

  7. #231
    Axeeon's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    21
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am sorry for the noob question but. Is this against blizzards ToS? is it safe to use? Is this along the lines of Auto Hot Key?

  8. #232
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    73
    Join Date
    Aug 2011
    Posts
    216
    Thanks G/R
    12/5
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zazazu View Post
    Yep. Its part of code, but its not used part. Assister its part of big project and not all of the unused code will be removed. Now i am working on remove all unused code.

    Assister is full passive (used only read memory). Only one part use write in memory -- its fishing part. I write about this.
    rekt......

  9. #233
    cyviel's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Axeeon View Post
    I am sorry for the noob question but. Is this against blizzards ToS? is it safe to use? Is this along the lines of Auto Hot Key?
    Yes it's against the ToS.

  10. #234
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    UPDATE 2017-03-02:
    • Update warriors routines for 7.1.5.

  11. Thanks Teryaki (1 members gave Thanks to Zazazu for this useful post)
  12. #235
    azxd's Avatar Member
    Reputation
    8
    Join Date
    Jan 2013
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for your work buddy !

  13. #236
    cyviel's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you remove/forgot the shadow priest rotation in the latest update?

  14. #237
    Bokutox's Avatar Banned CoreCoins Purchaser
    Reputation
    343
    Join Date
    May 2013
    Posts
    638
    Thanks G/R
    90/65
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for this!

  15. #238
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cyviel View Post
    Did you remove/forgot the shadow priest rotation in the latest update?
    Nop. All routine download atomaticaly. Check firewall settings for WoW.CA.

  16. #239
    pduke78's Avatar Member
    Reputation
    3
    Join Date
    Apr 2009
    Posts
    39
    Thanks G/R
    32/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any news about new version?

  17. #240
    Zazazu's Avatar Contributor
    Reputation
    191
    Join Date
    Jun 2016
    Posts
    390
    Thanks G/R
    5/143
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pduke78 View Post
    Any news about new version?
    New version at last phase testting. Improving detect auaras and items, targeting system, add form to creating own routing and some else updates. I think new version will be released in this month.

  18. Thanks pduke78, sarhan1992 (2 members gave Thanks to Zazazu for this useful post)

Similar Threads

  1. [Selling] Loads of WOW Combat Routines
    By Glete in forum World of Warcraft Buy Sell Trade
    Replies: 2
    Last Post: 03-24-2015, 04:04 PM
  2. Rift Combat Assistant
    By Hetoius in forum Rift
    Replies: 18
    Last Post: 04-27-2011, 01:32 PM
  3. [general wow] Combat Logic : LF comments
    By abuckau907 in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 12-23-2009, 03:39 PM
  4. WoW Glider 1-70 Profiles + Goto's and special combat!!!
    By tom123h in forum WoW Bot Maps And Profiles
    Replies: 6
    Last Post: 11-25-2007, 01:04 AM
  5. WoW non-combat pets
    By ugotnubed in forum World of Warcraft Guides
    Replies: 3
    Last Post: 11-06-2007, 02:37 AM
All times are GMT -5. The time now is 05:35 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search