StonerArena (Arena Wintrading Bot) menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    hybrid4's Avatar Private
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    StonerArena (Arena Wintrading Bot)

    StonerArena v1
    Arena Wintrading Bot

    What is this shit?

    After getting fed up with googling for a wintrading bot, i decided to write my own.
    Made in autoit and made as a K.S.S. program

    StonerArena is a simple wintrading bot
    No memory editing.
    No bullshit.


    Usage

    Add macros and Key Binds to corresponding bars/keys on all characters.
    If you need more help check out the Readme inside the program.




    Macros:
    Code:
    #Action bar 1
    /target Arena Battlemaster
    Code:
    #Action bar 2
    /script JoinBattlefield(1) #Skirmish Single
    #/script JoinBattlefield(1, true) #Skirmish + Group
    #/script JoinBattlefield(1, true, true)  #Rated + Group
    Code:
    #Action bar 3
    /script AcceptBattlefieldPort(1, 1)
    Code:
    #Action bar 4
    /script LeaveBattlefield()
    Key Binds:
    Code:
    Bind F7 to "Interact With Target"

    Source:

    Code:
    ;StonerArena v1 (Arena Wintrading Bot)
    ;By HybriD
    ;------------------------------------
    ;DISCLAIMER:
    ;Don't be stupid, don't get caught
    ;For best results, use 3.3.5a (12340)
    ;------------------------------------
    ;
    ;Macros:
    ;#Action bar 1
    ;/target Arena Battlemaster
    ;
    ;#Action bar 2
    ;#/script JoinBattlefield(1) #Skirmish Single
    ;#/script JoinBattlefield(1, true) #Skirmish + Group
    ;/script JoinBattlefield(1, true, true)  #Rated + Group
    ;
    ;#Action bar 3
    ;#/script AcceptBattlefieldPort(1, 1)
    ;
    ;#Action bar 4
    ;#/script LeaveBattlefield()
    
    #include <ButtonConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ###
    $MainWin = GUICreate("StonerArena", 235, 206, 221, 131)
    $FuncMenu = GUICtrlCreateMenu("&Functions")
    $RenWoW = GUICtrlCreateMenuItem("Rename", $FuncMenu)
    $HelpWin = GUICtrlCreateMenu("&Help")
    $ReadMe = GUICtrlCreateMenuItem("Readme", $HelpWin)
    $RunBot = GUICtrlCreateButton("Run", 80, 112, 83, 25, $BS_VCENTER)
    $JoinArena = GUICtrlCreateButton("Join Arena", 24, 32, 75, 25, $BS_VCENTER)
    $ExitArena = GUICtrlCreateButton("Exit Arena", 24, 56, 75, 25, $BS_VCENTER)
    $JoinArenaA = GUICtrlCreateButton("Join All", 136, 32, 75, 25, $BS_VCENTER)
    $ExitArenaA = GUICtrlCreateButton("Exit All", 136, 56, 75, 25, $BS_VCENTER)
    $gg = GUICtrlCreateButton("Good Game", 80, 136, 83, 25, $BS_VCENTER)
    $ZmbGrp = GUICtrlCreateGroup("Zombies", 128, 16, 97, 73, BitOR($GUI_SS_DEFAULT_GROUP,$BS_CENTER))
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $PrtyLdrs = GUICtrlCreateGroup("Party Leaders", 8, 16, 105, 73, BitOR($GUI_SS_DEFAULT_GROUP,$BS_CENTER))
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group1 = GUICtrlCreateGroup("Que Functions", 72, 96, 97, 73, BitOR($GUI_SS_DEFAULT_GROUP,$BS_CENTER))
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###
    
    Global $var = WinList("WoWHost", "")
    Global $var2 = WinList("World of Warcraft", "")
    Global $i
    
    Func Runin()
    	For $i = 1 To $var[0][0]
    		;MsgBox(0, "HWNDs", "Title=" & $var[$i][0] & " HWND=" & $var[$i][1]) ;Extra crap
    		ControlSend($var[$i][1], "", "", "{1}")
    		ControlSend($var[$i][1], "", "", "{F7}")
    	Next
    EndFunc
    
    Func Ex()
    	For $i = 1 To $var[0][0]
    		ControlSend($var[$i][1], "", "", "{4}")
    	Next
    EndFunc
    
    Func Join()
    	For $i = 1 To $var[0][0]
    		ControlSend($var[$i][1], "", "", "{3}")
    	Next
    EndFunc
    
    Func RenameWoW()
    	for $i = 1 to $var2[0][0]
    		WinSetTitle($var2[$i][1], "", "WoWHost")
    	Next
    EndFunc
    
    Func JoinA()
    	For $i = 1 to $var2[0][0]
    		ControlSend($var2[$i][1], "", "", "{3}")
    	Next
    EndFunc
    
    Func ExA()
    	For $i = 1 to $var2[0][0]
    		ControlSend($var2[$i][1], "", "", "{4}")
    	Next
    EndFunc
    
    Func Gg()
    	For $i = 1 to $var[0][0]
    		ControlSend($var[$i][1], "", "", "{2}")
    	Next
    EndFunc
    
    Func HelpDoc()
    	MsgBox(0, "README", "Open 2 coppies of WoW. Click Functions>Rename. Sign in the party leaders. Open 2 more coppies of WoW. Sign in zombie characters. Invite each zombie to arena teams and group. Put party leaders next to an Arena Battlemaster. Click the Run button. Wait a sec. Click Good Game. If both parties get Que at same time, hit Join Arena/Join All. If not, then just ignore the Que pop and repeat.")
    EndFunc
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    		Case $RunBot
    			Runin()
    		Case $JoinArena
    			Join()
    		Case $ExitArena
    			Ex()
    		Case $JoinArenaA
    			JoinA()
    		Case $ExitArenaA
    			ExA()
    		Case $gg
    			Gg()
    		Case $RenWoW
    			RenameWoW()
    		Case $ReadMe
    			HelpDoc()
    	EndSwitch
    WEnd
    Compile and run

    Post improvements/questions if need be.

    Mini-guide:

    Preparation:
    1. Make 4 accounts.
    3. WoWHost windows are logged in as respecting party leaders.
    3. World of Warcraft windows are logged in as respecting zombie party members.
    - (At this point you set up the Action Bars on each character with the shown macros [Only the keys 1,2,3,4 are used] and key bind F7 to "Interact With Target")
    4. Make 2 teams, (A, B).
    5. WoWHost(1) invites Zombie(1) to A and group A.
    6. WoWHost(2) invites Zombie(2) to B and group B.
    - (At this point A and B will que and lose every game until their MMR is as low as possible. Once desired MMR is achieved, re-make team A and B)
    7. Place WoWHost(1 + 2) next to an Arena Battlemaster (Where you que for arena)
    8. Place Zombie (1 + 2) somewhere inconspicuous.
    Usage:
    :
    9. Hit (Run) and wait ~3 seconds.
    10. Hit (Good Game)
    - (Wait for que to pop, once it does continue to step 11.)
    11. Hit (Join Arena)
    - (Wait for match to start -> 12.)
    12. Make the team (A) stay. And team (B) leave. (Macro #4 to exit arena manually)
    13. Repeat steps steps 9-12.
    - (Next game you will reverse B and A and vice-versa)
    Last edited by hybrid4; 08-23-2012 at 09:10 PM.

    StonerArena (Arena Wintrading Bot)
  2. #2
    fredrik1984's Avatar Member
    Reputation
    10
    Join Date
    Apr 2010
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I thought they had fixed arena wintrading with making sure everyone in the team losing rating when the team loses. Or am I mistaken?

  3. #3
    hybrid4's Avatar Private
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fredrik1984 View Post
    I thought they had fixed arena wintrading with making sure everyone in the team losing rating when the team loses. Or am I mistaken?
    I assumed the same. This is fully functional for arena based private servers, at least on 3.3.5 (arena-tournament, etc etc).
    PR will stay the same for characters who dont enter the game, allowing you to balance out the que. While MMR is subtracted.
    Tested and achieved 2100 before I lost interest.
    Even at a win lose ratio of 1:1 you will still gain Rating and PR while maintaining a 1350~ MMR.

  4. #4
    Owneth's Avatar Active Member
    Reputation
    56
    Join Date
    Feb 2011
    Posts
    362
    Thanks G/R
    6/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah but it's still a KILLER way to level guilds...

  5. #5
    Maingar's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/3
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will test this weekend, big hopes on this program.

  6. #6
    masch1na's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So what does this do anyway?

  7. #7
    hybrid4's Avatar Private
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maingar View Post
    Will test this weekend, big hopes on this program.
    I got big hopes too. Remember to tank your MMR on both teams as low as it'll go before starting.
    If your CPU can handle it, run 10 instances of WoW and do 5s. Less people tend to do 5v5 so it makes the process run more smoothly.

    Originally Posted by masch1na View Post
    So what does this do anyway?
    StonerArena allows you to boost Personal Rating, and Arena Team Rating, whilst keeping your Match Making Rating at a constant low.

    Layman's:
    1. Wintrade to rank #1.
    2. Gain gear without skill.
    3. **** bitches.
    4. Get money.
    Last edited by hybrid4; 08-22-2012 at 05:08 AM.

  8. #8
    Yiannisg's Avatar Private
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Functions>Rename dasnt working

  9. #9
    Maingar's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/3
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe a mini-guide step by step for testers will help so much.

  10. #10
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I assume this doesn't work on live?

  11. #11
    hybrid4's Avatar Private
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Yiannisg View Post
    Functions>Rename dasnt working
    That's not very descriptive...
    Just tested and it's working fine for me.
    Did you open up 2 copies of WoW, then use Rename?
    If for some-odd reason it's having a UAC mind ****, add
    Code:
    #RequireAdmin
    to the top of the script.

    The bot decides which button corresponds to which window by using arrays filled by WoW's window title.
    Functions>Rename will rename all running copies as WoWHost. That's why you open 2 and use the Rename function once before opening the rest.

    Originally Posted by Dominium View Post
    So I assume this doesn't work on live?
    If it did, I'd make you pay for it.

    Originally Posted by Maingar View Post
    maybe a mini-guide step by step for testers will help so much.
    Hope the updated post helps.
    Last edited by hybrid4; 08-23-2012 at 09:38 PM.

  12. #12
    ArenaAddictsdotcom's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wintrading is for noobs wtf

  13. #13
    empty_skillz's Avatar Contributor
    Reputation
    286
    Join Date
    Sep 2009
    Posts
    103
    Thanks G/R
    17/24
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ArenaAddictsdotcom View Post
    wintrading is for noobs wtf
    win trade has many words. Hitting a share, loweirng your rating to a share, loosing a few games to a friend so he can get rating, even multi rank 1s are doing this to Hit "share" ratings to maintain rank 1s in several teams without being competive, if your on the same rating as rank 1 team your going to share rank 1 when season ends.

    also most boosting team does this against their own/alt own teams cause they can get the rating back asap. so if rank 1s do this and they are noobs, you should not be playing this game sir

  14. #14
    kennythefish's Avatar Private
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got this bot?

  15. #15
    Kaylo's Avatar Active Member
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    68
    Thanks G/R
    11/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kennythefish View Post
    anyone got this bot?
    Hey, you compile the source code with: AutoIt - AutoItScript to get an executable file.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] [AutoIt] Open source Arena Wintrading Bot
    By guyvrouze in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 11-25-2012, 01:21 AM
  2. eternal wow - arena wintrading on eternal realm
    By marianboss in forum WoW EMU Exploits & Bugs
    Replies: 3
    Last Post: 07-04-2012, 12:55 AM
  3. Arena wintrade!
    By xollax in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 03-28-2008, 07:23 AM
All times are GMT -5. The time now is 08:10 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