Results 1 to 11 of 11
  1. #1
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk

    Arrow mpAutoPickup v1.1: Auto pickup loot now improved

    Hey guys !

    This is a script that will auto-pick everything around you ! Very useful for dungeon runs !
    Requierments : AutoHotKey (last version I guess)

    How it works :
    Press Numpad8 To start/stop on the active window.
    Press Numpad9 to exit.

    Well providing screenshots would be useless, let me know if you think about something to improve.

    How you get this ?
    Just grab the source code and paste it in a .ahk file and start it!
    You can also download it directly.

    /!\ This won't work if you renamed Trove's window (Some account launchers are doing that, care)

    To change the amount of time between 2 keypresses, change TIME by the amount you want (in ms)
    Code:
    	SetTimer, SendControls, TIME
    To change the time 'e' is hold it change there :
    Code:
    	Random, r, MIN, MAX
     

    Code:
    #Persistent
    
    Pids := Object()
    
    Process, Exist, TeamViewer.exe
      If (ErrorLevel)
        Msgbox, "Teamviewer is currenly running. This is a known program to cause issues with the bot. Please close it or disable quick connect feature. If issues still happen try to uninstall it."
    
    Gui, Add, Text,, mpAutoPickup v1.1`n`nKeys :`nNumpad8 to start/pause`nNumpad9 to exit`n`nActive accunts count :
    Gui, Add, Text, vCount w200
    Gui -Resize -MinimizeBox
    Gui, Show,,mpAutoPickup
    
    SetTimer, SendControls, 999
    SetTimer, UpdateGui, 250
    return
    
    numpad8::
    	WinGet, APID, PID, A
    	WinGetTitle, winTitle, ahk_pid %APID%
    	if (winTitle = "Trove"){
    		found = 0
    		for i, p in Pids
    			if (p=APID)
    				found=1
    		if (found!=1){
    			Pids.Insert(APID)
    			ToolTip, %APID% Now active
    			SetTimer, RemoveToolTip, 5000
    		}else{
    			newPids := Object()
    			for i, p in Pids
    				if (p!=APID)
    					newPids.Insert(p)
    			Pids := newPids
    			ToolTip, %APID% Now inactive
    			SetTimer, RemoveToolTip, 5000
    		}
    	}else{
    		Msgbox, %winTitle% is not a valid Trove window
    	}
    	return
    
    numpad9::
    	ExitApp
    
    SendControls:
    	for i, pid in Pids{
    		ControlSend, , {e down}, ahk_pid %PID%
    		Random, r, 999, 1800
    		Sleep, %r%
    		ControlSend, , {e up}, ahk_pid %PID%
    	}
    	return
    
    UpdateGui:
    	clients := Pids.MaxIndex()
    	GuiControl,, Count, %clients%
    	return
    
    RemoveToolTip:
    	SetTimer, RemoveToolTip, Off
    	ToolTip
    	return
    
    GuiClose:
    	ExitApp


     

    Code:
    V1.0 (253b):
    Initial release
    
    V1.1 (1440b):
    Gui added
    Now supports start/pause per account


    There are the virus scans :
    https://www.virustotal.com/en/file/1...is/1454158862/
    https://virusscan.jotti.org/fr-FR/fi...job/w4xvfuv4tg

    NOTE : Old thread can be closed

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 20 Users Say Thank You to mpmoi For This Useful Post:

    aanime06 (05-08-2016),Asdaspopo (04-01-2016),beatoflife (01-30-2016),caopeng (10-23-2017),edvinliuk (02-06-2016),erykswiatek (05-14-2016),fenyxuk (02-12-2016),jamiex98 (01-31-2016),jonluke (04-26-2016),kylechun (02-06-2016),Mersuyin (02-29-2016),rudy3106 (02-27-2016),ryukoow (03-02-2016),seconewton (03-02-2016),Skalety123 (02-11-2016),Skand (03-07-2016),TheMonvster (03-10-2016),tqlxquanz (02-26-2016),UgurAktan (05-03-2016),Windoge 10 (05-27-2016)

  3. #2
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,280
    My Mood
    Devilish
    Just source code, approved!

  4. #3
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Thanks mate !

  5. #4
    luffyfred's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Its not working, i do no why, i start fishing and then apear a window of error

  6. #5
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    This is not a fishing bot

  7. #6
    badr50050's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    How do you run the file

  8. #7
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Quote Originally Posted by mpmoi View Post
    Requierments : AutoHotKey (last version I guess)

    How you get this ?
    Just grab the source code and paste it in a .ahk file and start it!
    You can also download it directly.
    It's written I guess

  9. #8
    seng1123's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    i downloaded... what's that? how to use? need extract to where?

  10. #9
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    You need autohotkey
    Quote Originally Posted by mpmoi View Post
    Requierments : AutoHotKey (last version I guess)
    Just extract it somewhere and start the file. Every command is shown on the post
    Quote Originally Posted by mpmoi View Post
    How it works :
    Press Numpad8 To start/stop on the active window.
    Press Numpad9 to exit.
    Last edited by mpmoi; 04-22-2016 at 05:26 AM.

  11. #10
    tekkitdk's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    how can i open it? plz help

  12. #11
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    The file ? you double-click it maybe....

Similar Threads

  1. [Outdated] MpAutoPickup v1.2 : Automatically collects loot !
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 8
    Last Post: 11-09-2016, 10:31 AM
  2. [Outdated] mpAutoPickup v1.0: Auto pickup loot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 4
    Last Post: 01-26-2016, 03:44 PM
  3. Improved Auto[GS]Click version 2.0
    By GS-HITMAN in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 112
    Last Post: 10-18-2010, 11:33 AM
  4. auto pickup
    By shadowkiller210 in forum MapleStory Hacks, Cheats & Trainers
    Replies: 3
    Last Post: 08-28-2010, 11:17 AM
  5. auto pickup
    By shadowkiller210 in forum MapleStory Hacks, Cheats & Trainers
    Replies: 2
    Last Post: 03-03-2010, 11:51 PM