Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired

    2 Row Inventory Deleter Multiaccount

    It deletes 2 specific rows of your inventory.
    You may have to change some settings if you have lag.
    It's also presumed your game client has a 1920x1017 resolution.

    How to use:
    Download and unzip it.
    Run the ahk file.
    Click The Get Window PIDS button. (you have to do this every time you restart the bot)
    Wait till it says Bot_Ready (usually happens pretty fast under 1 second i find)
    Click Start Bot.

    To stop the bot click Stop Bot.

    NOTE: you cannot run this in the background as it is impossible to do mouse clicks without having the window focused.

    Enjoy.

    https://www.virustotal.com/#/file/6d...1929/detection
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 15 Users Say Thank You to phj280600 For This Useful Post:

    alien4hun (05-09-2018),derp_1 (05-15-2018),domme2204 (05-11-2018),Feewka (08-25-2019),Just_neet (05-29-2020),KanoeYuuko (04-30-2020),Katisuragi (11-19-2019),kazehotaru (06-13-2018),kenya2014 (03-17-2021),pajaroloco86 (12-10-2018),Quangphu (06-17-2018),Ricocow (06-27-2020),szymon310199 (04-05-2018),whv71872 (03-30-2019),you1201 (07-31-2018)

  3. #2
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    Post provide pictures .

  4. #3
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired
    Quote Originally Posted by Eoch View Post
    Post provide pictures .
    what do you mean?

  5. #4
    szymon310199's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    i can't download, it says "Invalid Attachment specified. If you followed a valid link, please notify the administrator."

  6. #5
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired
    Yea i don't really know why it isnt approved. rules says - No uploading files without including a screenshot of the hack/file when applicable. (2 Day Ban). think i need to upload a pic of the gui or??

  7. #6
    szymon310199's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    actually i dont know what's going on :x could you upload it to some hosting and send me link on pm?

  8. #7
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    Quote Originally Posted by phj280600 View Post
    what do you mean?
    My bad. You need to upload pictures of this hack.

  9. #8
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired
    Well its a bot not a hack. Do you want picture of GUI? or like of it deleting items?

    Just saw the Mpmoi fishbot post has pics og gui.

    - - - Updated - - -

    https://prnt.sc/j1g8m3
    https://prnt.sc/j1g8qh
    Last edited by phj280600; 04-05-2018 at 03:07 PM.

  10. #9
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    safe and clean not tested

  11. #10
    szymon310199's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Tested, working perfect, just had to adjust the click points cause somehow it was missing items to delete, this is what i use on fhd:
    #SingleInstance, force

    global SleepTimer := 15
    global StopValue := 0
    global TimePast := 0
    global OKSleep := 0
    global RanArray := []

    IniRead, SleepTimer, config.ini, Settings, SleepTimer
    IniRead, OKSleep, config.ini, Settings, OKSleep

    Gui, Add, Tab, W300 H300, General|Settings

    Gui, Tab, General
    Gui, Color, White
    Gui, +AlwaysOnTop
    Gui, font, s7
    Gui, Add, Button, gGetPids, Get Window PIDS
    Gui, Add, Text, vCurrentAction, Nothing Yet
    Gui, Add, Button, gStartBtn, Start Bot
    Gui, Add, Button, gStopBtn, Stop Bot
    Gui, Add, Text, x80 y113, Stops Once Loop Is Done

    Gui, Tab, Settings
    Gui, Color, WHite
    Gui, +AlwaysOnTop
    Gui, font, s7
    Gui, Add, Text, , Sleep Between Each Delete:
    Gui, Add, Edit, x250 y32 vSleepTimer, %SleepTimer%
    Gui, Add, Text, x20 y60, Sleep Between Clicking MButton And OK In Ms:
    Gui, Add, Edit, x250 y57 vOKSleep, %OKSleep%
    Gui, Add, Button, x20 y80 gSaveSettingsBtn, Save Settings

    Gui, Show, x0 y0 W300 H300,

    return

    GetPids:

    GetPIDs()

    return

    StartBtn:

    StopValue := 0
    MainLoop()

    return


    StopBtn:

    StopValue := 1

    return

    SaveSettingsBtn:

    Gui, Submit, NoHide
    IniWrite, %SleepTimer%, config.ini, Settings, SleepTimer
    IniWrite, %OKSleep%, config.ini, Settings, OKSleep

    return

    MainLoop() {

    outer:
    loop {

    for index, element in RanArray
    {
    GuiControl, Text, CurrentAction, Deleting_Items
    GuiControl, Move, CurrentAction, W500

    CurrentWindowAct := element

    WinActivate, ahk_pid %CurrentWindowAct%

    sleep, 1000

    MouseMove, 1598, 414
    Send, {MButton}
    sleep, %OKSleep%
    Click, 851, 562
    MouseMove, 1657, 415
    Send, {MButton}
    sleep, %OKSleep%
    Click, 855, 555
    MouseMove, 1725, 413
    Send, {MButton}
    sleep, %OKSleep%
    Click, 851, 559
    MouseMove, 1794, 412
    Send, {MButton}
    sleep, %OKSleep%
    Click, 853, 557
    MouseMove, 1865, 411
    Send, {MButton}
    sleep, %OKSleep%
    Click, 852, 560
    MouseMove, 1587, 474
    Send, {MButton}
    sleep, %OKSleep%
    Click, 853, 560
    MouseMove, 1655, 475
    Send, {MButton}
    sleep, %OKSleep%
    Click, 860, 552
    MouseMove, 1726, 472
    Send, {MButton}
    sleep, %OKSleep%
    Click, 856, 557
    MouseMove, 1795, 473
    Send, {MButton}
    sleep, %OKSleep%
    Click, 858, 550
    MouseMove, 1865, 471
    Send, {MButton}
    sleep, %OKSleep%
    Click, 853, 555

    loop %SleepTimer%
    {
    TimePast := TimePast + 1
    sleep, 1000
    GuiControl, Text, CurrentAction, Time Until Next Deletion: %TimePast%
    GuiControl, Move, CurrentAction, W300
    }
    TimePast := 0

    if StopValue = 1
    {
    break outer
    }
    }
    }
    }

    return


    GetPIDs() {

    GuiControl, Text, CurrentAction, Getting_PIDs
    GuiControl, Move, CurrentAction, W500

    pidU =
    RanArray := []

    WinGet,l,list,ahk_exe Trove.exe
    WinGet,currentPid,pid,A
    WinGet,name,ProcessName,ahk_pid %currentPid%
    if(name!="Trove.exe")
    ToolTip
    loop %l%{
    WinGet,pidU,PID,% "ahk_id " l%a_index%
    RanArray.Insert(pidU)
    }
    GuiControl, Text, CurrentAction, Bot_Ready
    GuiControl, Move, CurrentAction, W500
    }

    return

    ESC::ExitApp

    return

  12. #11
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired
    Glad to hear its working. Any other ideas to program?

  13. #12
    szymon310199's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    right now i don't have any request, thank you for your effort, really appreciate

  14. #13
    Memphistm's Avatar
    Join Date
    Apr 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hey bro, first of all thanks for your work. My game is in 1920 x 1017 but it always miss the trash button, what can I do to fix it ?

  15. #14
    phj280600's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    206
    Reputation
    10
    Thanks
    130
    My Mood
    Inspired
    Quote Originally Posted by Memphistm View Post
    Hey bro, first of all thanks for your work. My game is in 1920 x 1017 but it always miss the trash button, what can I do to fix it ?
    by missing do you mean its not going to the right point or it doesn't click the ok button everytime? if its the first change the coords but as u said its the right size so presuming its the second try increasing the time between the Mbutton and ok button click, you can find it under settings its the second tab. Change it then click save and restart the bot for the changes to take effect.

  16. #15
    samet231231's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by szymon310199 View Post
    Tested, working perfect, just had to adjust the click points cause somehow it was missing items to delete, this is what i use on fhd:
    ty for good edit

    - - - Updated - - -

    ty for this program

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] 2 Row Inventory Deleter
    By phj280600 in forum Trove Hacks & Cheats
    Replies: 12
    Last Post: 04-04-2018, 01:14 PM
  2. [Solved] Cant delete items and picking up some items says item already exists in Inventory
    By Paradox_x in forum Adventure Quest Worlds (AQW) Help
    Replies: 8
    Last Post: 09-29-2013, 03:47 AM
  3. [WTS] Steam Account : CS 1.6, Condition Zero/Deleted Scenes, Magic, Saints Row 3
    By Syqe in forum Selling Accounts/Keys/Items
    Replies: 1
    Last Post: 08-01-2013, 11:32 AM
  4. #fuckkabam- Deleted My inventory
    By TrollToast in forum Realm of the Mad God Discussions
    Replies: 12
    Last Post: 06-23-2013, 11:54 PM
  5. [WTS] selling saint row 3 gift in steam ( in my gift inventory ) for 5 usd :) ( PAYPAL )
    By toyboz in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 06-08-2013, 07:10 AM