Mini Bot Program I wrote to BACKGROUND automate the fishing tournament REP exploit. menu

User Tag List

Results 1 to 12 of 12
  1. #1
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Mini Bot Program I wrote to BACKGROUND automate the fishing tournament REP exploit.

    BACKROUND AUTO REP GAINING


    I did post this over in the main thread to hopefully get it to as many people as possible before Blizz fixes this, but I felt it was more appropriate here in the BOT/PROGRAM section of the forums. Hopefully you guys don't mind the x-post in this one instance.



    QUICK FEATURES LIST
    1. I randomize the keystrokes to make it seem much more human.
    2. This is setup to support ORG, but with a simple macro change will support Ally too.
    3. Single key press strokes that are just like you hitting the button on your keyboard.
    4. ALL ACTIONS ARE DONE IN THE BACKGROUND!!!
    5. Allows you to play more than 1 game of WOW, or do anything else on PC whilst working in background.


    Thank you to those who have found all of these exploits! This is just an automization script I whipped up in about 15 min. I hope you enjoy it!


    THE GUIDE


    STEP #1 - MACROS SETUP


    *IMPORTANT*
    You are going to create 3 easy Macros. I will put them in Order for you to copy/paste, but what you need to do is place them on the same exact action bar in positions 1,2,& 3

    BEFORE YOU GO ON, KEYBIND THE OPTION "INTERACT WITH TARGET" WITH THE LEFT BRACKET KEY, the '[' key:





    MACRO #1 - Character Interraction(Action bar position 1)

    Code:
    /tar Grinkle
    *NOTE* : If you are Alliance just go to the guy in Stormwind and include the following macro instead:

    Code:
    /tar Barrus

    MACRO #2 - Complete Quest Macro (Action bar position 2)


    Code:
    /script SelectGossipAvailableQuest(1)
    /script CompleteQuest()
    /script GetQuestReward()
    *NOTE* : This macro will complete the quest automatically.

    MACRO #3 - Delete those Papers! (Action bar position 3)

    Code:
    /run for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Fishing Tournament!") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end
    *NOTE* : This macro deletes those annoying papers that would take forever to do manually.



    STEP #2 - AUTO HOT KEY (AHK)



    This is what will run the script for you. You have 2 options to run this. You can run it as a WINDOWS executable which I have included, or if you prefer, just copy and paste the included to your autohotkey program and run it that way. I assume most of you will just download my program.



    Code:
    ; This is the Fishing Tournament Quest to maximize XP very quickly
    
    
    
    
    SplashTextOn, 300, , IDENTIFYING WHICH CLIENT TO USE!
    Sleep, 4000 
    SplasHtextoff 
    
    WinGet, wowid, List, World of Warcraft ;Setting unique IDs for each WOW window if more than 1
    
    ;Minimize the WOW windows to determine which one is your main
    WinMinimize, ahk_id %wowid1% 
    WinMinimize, ahk_id %wowid2% 
    
    WinActivate, ahk_id %wowid1% ;Determine main window for this exploit.
    
    ;This is essential so you can play WOW on 1 account and be background turning in quests on the other
    
    SoundPlay, %A_WinDir%\Media\Windows Exclamation.wav
    MsgBox, 4,, Is this the WOW account you wish to use? (press Yes or No) 
    IfMsgBox Yes 
       idMain = %wowid1% 
    else 
       idMain = %wowid2% 
    
    If idMain = %wowid1% 
    { 
       idClone = %wowid2% 
    } else { 
       idClone = %wowid1% 
    } 
    
    ;Activate All WOW windows 
    WinActivate, ahk_id %idMain% 
    WinActivate, ahk_id %idClone% 
    sleep, 2000
    
    SoundPlay, %A_WinDir%\Media\Windows Exclamation.wav
    MsgBox, 1,, MACROS MUST BE SETUP + BE NEXT TO NPC (press OK to continue) 
    IfMsgBox Ok
    	sleep 500
    else
    	ExitApp
    
    SplashTextOn, 360, , The 'PAUSE' button will pause/unpause 'ESC' will stop program.
    	Sleep, 5000 
    SplasHtextoff 
    
    
    
    
    ;MACRO ACTIVATION!
    
    Random, rand, 750, 1250 ; Makes the macro command input more human
    
    Loop ; infinite loop so stop when needed
    {
    	ControlSend,, 1, ahk_id %idMain% 
    	Sleep 300
    		ControlSend,, [, ahk_id %idmain%
    	Sleep 300
    	
        ControlSend,, 2, ahk_id %idMain% 
    	Sleep %rand%
    
        ControlSend,, 3, ahk_id %idMain% ; DELETING PAPER
    	Sleep %rand% ;
    		
    }
    
    ;Script Controls for User
    
    Pause::Pause   ; Toggle Pause button to pause and unpause script.
    
    Escape::
    ExitApp
    Return


    Jottie Only Virus scan HERE


    I highly recommend re-naming the file into something else so the program remains an unknown in your processes.


    FINAL IMPORTANT REVIEW BEFORE YOU START

    [1] You are standing next to the NPC
    [2]You have setup the 3 macros and placed them in the correct order

    [3]You have key-binded "Interact with Target" with the following key '['



    ENJOY

    EDIT: As per request to include a much FASTER version, I have updated another file. Be aware that the slower one appears to be much more human like, to which I did on purpose, but this next version is about pure speed, which Blizz may notice in hcecking the time between logs. It generally turns in twice per second.

    DOWNLOAD FAST VERSION HERE
    Last edited by Sklug; 09-01-2012 at 04:20 PM.

    Mini Bot Program I wrote to BACKGROUND automate the fishing tournament REP exploit.
  2. #2
    Cloud13's Avatar Contributor CoreCoins Purchaser
    Reputation
    195
    Join Date
    Jul 2008
    Posts
    283
    Thanks G/R
    1/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesome, but please change the font color of the lighter fonts. difficult to see on default ownedcore theme
    Remember to click +Rep if someone assist you on the forums. Spread the love.

  3. #3
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cloud13 View Post
    awesome, but please change the font color of the lighter fonts. difficult to see on default ownedcore theme
    ok will do

  4. #4
    Sariam1992's Avatar Active Member CoreCoins Purchaser
    Reputation
    38
    Join Date
    Jan 2009
    Posts
    124
    Thanks G/R
    10/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's great! i changed the timings down to 150 MS and its just blasting through it ;3

    repped =]
    Last edited by Sariam1992; 09-01-2012 at 01:22 PM.

  5. #5
    rage5's Avatar Active Member
    Reputation
    50
    Join Date
    Jan 2008
    Posts
    196
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    solved my problem

    awesome +5 rep
    Last edited by rage5; 09-01-2012 at 02:56 PM.

  6. #6
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rage5 View Post
    hm it doesnt interact with target here

    keybinding is: "ALT-CTRL-8" should be "["

    wheres the problem? what did i do wrong? :P
    lol weird, Just make sure you have "[" keybound to only one thing. Just like in that picture I showed. There's no reason it'd be doing ALt-Ctrl-8 unless you already have that keybound to something else

  7. #7
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nazstyle View Post
    It's great! i changed the timings down to 150 MS and its just blasting through it ;3

    repped =]
    Ya I've tested it even at 50ms and it works, to a point where you can turn it in like 4 times a second lol -- But, I just felt that the smei-slower method felt more realistically human and thus not an obvious automation.

  8. #8
    rage5's Avatar Active Member
    Reputation
    50
    Join Date
    Jan 2008
    Posts
    196
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could you upload a faster clicking file? like 100ms or something like that

  9. #9
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rage5 View Post
    could you upload a faster clicking file? like 100ms or something like that
    LOL alright I'll give 2 options give me a seec lol

    EDIT: OK I just created a new one that is the FAST version -- so enjoy lol

    DOWNLOAD IT HERE
    Last edited by Sklug; 09-01-2012 at 04:18 PM.

  10. #10
    rage5's Avatar Active Member
    Reputation
    50
    Join Date
    Jan 2008
    Posts
    196
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sklug View Post
    LOL alright I'll give 2 options give me a seec lol
    tyvm maybe a very fast ( easier detectable ) and a less detectable one like its up there ^^

  11. #11
    cyberburst69's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very nice great job m8

  12. #12
    Sklug's Avatar ★ Elder ★
    Reputation
    1084
    Join Date
    Mar 2008
    Posts
    1,210
    Thanks G/R
    210/224
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And... it's fixed lol

    THis is now useless guys. Hope you enjoed it while it lasted!

Similar Threads

  1. 2.1.3 Working Bots/Programs
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 87
    Last Post: 02-08-2008, 07:50 PM
  2. Cheats, Bots, Programs, Hacks
    By Kzaf in forum World of Warcraft General
    Replies: 4
    Last Post: 02-07-2008, 02:10 PM
  3. Macintosh Bots / programs.
    By Hallowsend in forum Suggestions
    Replies: 18
    Last Post: 10-25-2007, 12:11 AM
  4. Bots/Program questions
    By zeekee in forum World of Warcraft General
    Replies: 1
    Last Post: 08-31-2007, 01:04 PM
  5. WoW bot program. NOT wow glider
    By Disphotic in forum World of Warcraft General
    Replies: 3
    Last Post: 10-17-2006, 12:39 PM
All times are GMT -5. The time now is 05:56 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search