[Rogue] Pick Pocketer v0.5 (AutoIT) menu

User Tag List

Results 1 to 5 of 5
  1. #1
    frozenthorn's Avatar Active Member
    Reputation
    20
    Join Date
    Dec 2008
    Posts
    277
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Rogue] Pick Pocketer v0.5 (AutoIT)

    [Rogue] Pick Pocketer v0.5 (AutoIT)

    Jotti's malware scan - pickpocketer.exe
    VirusTotal - Free Online Virus, Malware and URL Scanner

    I'm sure you already know this but AutoIT does often cause false positives for some virus scanners, posts with "OMG VIRUS" will simply be ignored, its totally clean and the source is provided in .zip at bottom of post for your viewing pleasure.

    First of all the primary use of this tool is to pickpocket on a Rogue in a stationary location, ideally in the awesome spot provided by Cloudflash in his Rogue AFK Gold thread. You can of course use it in other places, but the tool 'as is' will not move around on its own. I liked the idea posed and decided to make something fun to and easy to use.

    For optimal use, you need (3) available keys not already bound to something in game for control hot keys and (1) unused key to bind a macro too in game. It has defaults setup in the compiled .exe provided but the .au3 is where you can change the keys to something else.

    Step 1: Create a new macro in game with the following, or another pickpocket macro of your choosing. Bind this to an unused key, default is 'g' unless you edit the .au3
    Code:
    #showtooltip Pick Pocket
    /cleartarget
    /run SetCVar(”targetNearestDistance”, 5.000000 )
    /targetenemy [noharm,nodead]
    /run SetCVar(”targetNearestDistance”, 41.000000 )
    /use [nostealth,combat]Vanish;[nostealth]Stealth;Pick Pocket
    Step 2: For convince the tool uses 3 hotkeys, 1 to Start Botting, 1 to Pause Botting, and 1 to Exit the tool. On my keyboard these are all in a row and already unused in game, edit the .au3 if you need to change these, don't use something already bound in game though.

    Default for "Start Botting" is [Home]
    Default for "Pause Botting" is [End]
    Default for "Close Bot" is [Insert]

    Thats pretty much all there is too this, move to the location in Icecrown shared by Cloudflash and have fun. The NPC your looking for is called a "Fallen Hero's Spirit" and is neutral (yellow), won't attack unless you attack it.



    Things you should expect from this tool
    1. It will auto press 1 macro key that you hopefully bound in game.
    2. It will wait for you to open WOW and remind you if you didn't do that first.
    3. It will tell you what the current hot keys are bound to, however over the tray icon.
    4. It will tell you if the WOW process closes while its running and auto pause.
    5. It will run in the background, keys are only sent to the WOW window.


    Things you should NOT expect from this tool
    1. It will not 'move' around the area, put your character where you want him to stay.
    2. It does not read or write to WOW memory, features are very limited.
    3. Its not going to login for you or notice if you get disconnected.
    4. Its not setup to work with multiple WOWs open at the same time, 1 WOW at a time.


    I made this for fun and to learn a little more about AutoIT, you may think its a bit overall for the task and your probably right but so what? Its something to do, I had fun with it, maybe you will too. Feel free to change or alter it to suit your needs or maybe just to figure out how something is done, feedback is appreciated but please don't come to me with feature requests as It already does what I want from it the rest is your task

    Download Mirror: MEGAUPLOAD - The leading online storage and file delivery service (.exe / .au3 to compile yourself)
    Download Mirror: http://www.sendspace.com/file/dt7k32
    Last edited by frozenthorn; 10-25-2010 at 09:42 PM.

    [Rogue] Pick Pocketer v0.5 (AutoIT)
  2. #2
    csin's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It does not read or write to WOW memory, features are very limited.
    So.... How does it accomplish anything without reading WoW memory?

  3. #3
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by csin View Post
    So.... How does it accomplish anything without reading WoW memory?
    it works w/o wow memory
    read source

    Code:
    HOTKEYSET("{HOME}", "Start")
    HotKeySet("{END}", "Stop")
    HotKeySet("{INSERT}", "Close")
    Dim $ISTART = " [HOME] ", $IPAUSE = " [END] ", $ICLOSE = " [INSERT] "
    Dim $IMACRO = "{g}"
    Dim $IRNDLW = "250", $IRNDHH = "400"
    TraySetState()
    TraySetToolTip("Press" & $ISTART & "to start" & $IPAUSE & "to pause or" & $ICLOSE & "to close.")
    If WinExists("World of Warcraft", "") Then
    	WinActivate("World of Warcraft")
    	TrayTip("PICK POCKETER IS READY!", "Press" & $ISTART & "to get started.", 7)
    Else
    	TrayTip("PICK POCKETER IS NOT AMUSED!", "Please open WOW, I will wait...", 10)
    	WinWaitActive("World of Warcraft")
    	WinActivate("World of Warcraft")
    	TrayTip("PICK POCKETER IS PLEASED!", "Please login to your character and press" & $ISTART & " to start when you are in position to pickpocket.", 10)
    	Sleep(30000)
    	TrayTip("STILL HERE READY AND WAITING!", "Pressing" & $ISTART & " will start the pickpockting, make sure your in place first.", 20)
    EndIf
    While 1
    	Sleep(1)
    WEnd
    
    Func STOP()
    	TrayTip("PICK POCKETER IS PAUSED!", "Press" & $ISTART & " to resume or" & $ICLOSE & " to close.", 7)
    	While 1
    		Sleep(1)
    	WEnd
    EndFunc
    
    
    Func START()
    	TrayTip("MAKING MONEY!", "Press" & $IPAUSE & " to pause or" & $ICLOSE & " to close.", 7)
    	While 1
    		If WinExists("World of Warcraft", "") Then
    			ControlSend("World of Warcraft", "", "", $IMACRO)
    			Sleep(Random($IRNDLW, $IRNDHH))
    		Else
    			TrayTip("WOW NOT DETECTED", "Auto pause enabled. Press" & $ISTART & " to start botting when you are logged in and in position. You can also press " & $IPAUSE & " to stop this notification", 15)
    			Sleep(25000)
    		EndIf
    	WEnd
    EndFunc
    
    
    Func CLOSE()
    	TrayTip("PICK POCKETER IS SAD!", "Closing the program, but I am not happy about it!.", 7)
    	Sleep(7000)
    	Exit
    EndFunc

  4. #4
    csin's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah, sendkeys.... Got it.

  5. #5
    frozenthorn's Avatar Active Member
    Reputation
    20
    Join Date
    Dec 2008
    Posts
    277
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah other than sending its 1 command to the WOW window to press the macro key it doesn't actually need any interaction to do what it does. I just didn't see the point it making it risky, too many people have concerns when you start touching memory even if its done safely.

Similar Threads

  1. [Selling] [][][] ULTIMATE GOLD PROFILE 30k+/day ROGUE PICK POCKET [][][]
    By Hurkatolto in forum World of Warcraft Buy Sell Trade
    Replies: 69
    Last Post: 09-14-2014, 08:33 PM
  2. [Selling] [][][] fresh new 1000 gold/hour spot rogue pick pocket [][][]
    By Hurkatolto in forum World of Warcraft Buy Sell Trade
    Replies: 113
    Last Post: 05-30-2014, 07:44 AM
  3. Replies: 8
    Last Post: 02-12-2014, 02:33 PM
  4. [Selling] Amazing Rogue Pick Pocket Profile
    By Jogex in forum World of Warcraft Buy Sell Trade
    Replies: 17
    Last Post: 10-30-2013, 03:56 PM
  5. [ROGUE]New Pick Pocket Farmspot
    By Forsak3n in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 12-10-2010, 12:52 PM
All times are GMT -5. The time now is 12:41 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