5.1+ BG Honor Farm Macro menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    5.1+ BG Honor Farm Macro

    Since 5.1.0, AcceptBattlefieldPort and JoinBattlefield have become protected. Here's an updated macro for those who do not have the ability to update it themselves.

    I use Macro Toolkit personally, but the script can just as easily be spread over multiple macros (with some slight configuration).


    Code:
    /script RepopMe()
    /stopmacro [target=player, dead]
    /click PVPFrameLeftButton
    /click StaticPopup1Button1
    /cast [nomounted] Mount Name
    /targetfriendplayer
    /follow
    /cast [target=targettarget] Ranged attack #1
    /cast [target=targettarget] Ranged attack #2
    /cast [target=targettarget] Ranged attack #3
    /script if WorldStateScoreFrame:IsShown() == 1 then LeaveBattlefield() end

    Be sure to replace the red text accordingly. You can have as little or as many attacks as you like. When configuring the script, just keep in mind that any successful attacks will remove the "Inactive" debuff, assuming you ever have it placed on you. I personally prefer to choose spells that are instant cast and have a long range.

    Now that your macro is set up, you're ready to set up a key-repeater or auto-clicker. There are multiple guides for doing this, but since my AutoIt script is still open and running, I may as well post it here as well:


    Code:
    Global $WindowTitle = "World of Warcraft"
    
    Global $PauseKey = "{F7}"
    Global $TerminateKey = "{F8}"
    Global $PVPOpenKey = "{h}"
    Global $MacroBindKey = "{-}"
    
    Global $Paused = False
    
    HotKeySet( $PauseKey, "Pause" )
    HotKeySet( $TerminateKey, "Terminate" )
    
    While 1
    	If Not $Paused Then
    		ControlSend( $WindowTitle, "", 0, $PVPOpenKey )
    		Sleep( 500 )
    		ControlSend( $WindowTitle, "", 0, $MacroBindKey )
    	EndIf
    
    	Sleep( 500 )
    WEnd
    
    Func Pause()
    	$Paused = Not $Paused
    EndFunc
    
    Func Terminate()
    	Exit
    EndFunc

    How can I use this information?
    1. Set a "Do not disturb" message. I often use the message 'Watching TV - I may not reply! I am using a /follow macro FYI'.
    2. Find a spot where you can get yourself stuck. You do not want the script to /follow someone to your death!
    3. Open the PvP window, and select the battleground you wish to bot.
    4. Configure the macro and copy it into WoW.
    5. Place the macro on your bars and bind it to the $MacroBindKey setting from the AutoIt script.
    6. Download and install AutoIt, open SciTE (included), save and run the script (starts immediately - by default: F7 to pause, F8 to stop).
    7. Enjoy your free honor!

    Why use this script?
    Blizzard can not ban you for using macros! As for the AutoIt script, even though it breaks EULA terms, Blizzard cannot distinguish real keystrokes from simulated ones - they can't know if you're at your computer or not (here's where the DND message helps). I understand that this could be changed in the future, but for the whole 8 years that WoW has existed, they have never had this ability. I highly doubt they will be adding it any time soon.

    I can generally get 4000 honor overnight, using this script. However, the rate you gain honor while using this macro/script, entirely depends on your battlegroup and faction. It is possible that I'm just lucky!

    I hope you find this useful!

    Jadd.
    Last edited by Jadd; 11-28-2012 at 03:48 AM.

    5.1+ BG Honor Farm Macro
  2. #2
    Cecu's Avatar Contributor
    Reputation
    229
    Join Date
    Apr 2011
    Posts
    708
    Thanks G/R
    121/20
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great guide, Jad!
    But I must notice, that Blizzard can actually ban you for non-participating in Battlegrounds, even without using of third-party software, indeed.

  3. #3
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cecu View Post
    Great guide, Jad!
    But I must notice, that Blizzard can actually ban you for non-participating in Battlegrounds, even without using of third-party software, indeed.
    Thanks Can I get some source of this information? I will change my post.

  4. #4
    geekdude2001's Avatar Banned
    Reputation
    13
    Join Date
    Apr 2009
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll post a silly theory which is that they typically only do minor suspensions if they don't think you're actually botting (like think you're being lazy and afk a few or whatnot) in BGs. No it isn't just my opinion it's based on what I've read on this and the buddy forums about bans and suspensions people have gotten over a period of time as I've been botting.

    Thank you Jadd for all your work for the community it is much appreciated! Also thanks a ton for posting about Macro toolkit addon, I've been using superduper macro, and the toolkit actually looks much better
    Last edited by geekdude2001; 11-28-2012 at 05:39 AM.

  5. #5
    Ankles29's Avatar Private
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you get it to join BGs automatically? Or can you?

  6. #6
    1lolol7's Avatar Active Member
    Reputation
    29
    Join Date
    Apr 2010
    Posts
    24
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i got a 3 day ban for afking in bgs before

  7. #7
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ankles29 View Post
    How do you get it to join BGs automatically? Or can you?
    It does this already. If it doesn't work, it's possible an addon is interfering.

  8. #8
    Fajjk's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i bind it to the macro key ? if i put the macro on *1*

  9. #9
    neopoya's Avatar Member
    Reputation
    4
    Join Date
    Sep 2008
    Posts
    57
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Used this for 2 nights, today got a 3 hour ban, i guess from reports from other players , be careful!

  10. #10
    bessbrett's Avatar Member
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used it with auto it, received a lot of afk reports. Separated the macro into 2 macros and used Moxzbot 2.2 worked just fine. amazing macro.

  11. #11
    neopoya's Avatar Member
    Reputation
    4
    Join Date
    Sep 2008
    Posts
    57
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That is EXACTLY what i've done. Be careful since it seems ppl getting followed sometimes get pissed and end reporting you ( i mean not for AFK, right clicking your potrait for cheating) . I guess this is the shortest time i've a got a ban, even if it was a short one, with a BG bot :S

  12. #12
    enis's Avatar Banned
    Reputation
    -2
    Join Date
    Jul 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mate,
    Your macro is sweet but its a bit hefty for melee classes.
    I tried on my rogue and it's acting like a psycho, hehe.

    Is there a way to make the character move forward and jump, rather then targetting people and follow?
    Because it changes target and follows them every 5 secs or so and its acting like a mad men

    Also, how did you fit this thing in 1 macro, I tried to use the macro toolkit but didn't know how to shorten it to 1 macro?

    Your help is appriciated.

    Thank you.

  13. #13
    rsoulx123's Avatar Private
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where it says cast [target target blah blah, and for me, on my shadow priest, its shadow word pain, its the only thing it spams, what the point in putting multiple spells there if its only going to do the one, would it work if i used a /cast sequence along with a reset?

  14. #14
    lockstrom's Avatar Private
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    do i need to name the macro $MacroBindKey id assume not because you have it writtin as Global $MacroBindKey = "{-}"..... just cant get it to work and ive done everything you've stated :/ im sure its just my lack of knowledge of auto it.

  15. #15
    lockstrom's Avatar Private
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nevermind got her up and working like a charm... thanks

Page 1 of 2 12 LastLast

Similar Threads

  1. Honor Farming Service ~15k a day
    By issacobra in forum Members Only Gold And Powerleveling Buy Sell
    Replies: 9
    Last Post: 01-08-2008, 10:27 AM
  2. Easy HK and Honor farming
    By WOW888 in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 07-02-2007, 04:18 PM
  3. Honor Hold Marks of Honor Farming
    By Dream in forum World of Warcraft Guides
    Replies: 6
    Last Post: 01-28-2007, 10:04 AM
  4. AFK Honor Farming
    By Juvalius in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 12-17-2006, 08:43 PM
  5. AFK Honor Farming
    By Juvalius in forum World of Warcraft General
    Replies: 2
    Last Post: 12-14-2006, 07:18 PM
All times are GMT -5. The time now is 04:35 AM. 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