Page 5 of 5 FirstFirst ... 345
Results 61 to 69 of 69
  1. #61
    Lulzer99's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    5
    I can't get it to work with multiple instances. I can open up my main and it works fine, but if I try to use it on a fresh bot account, it doesn't work. The bots have fishing rods and lures so they aren't missing anything
    If you can't explain it simply, you don't understand it well enough. -Albert Einstein




  2. #62
    dekay93's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    11
    My Mood
    Lurking
    any update on this?

  3. #63
    LeetSpeak3's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Lulzer99 View Post
    I can't get it to work with multiple instances. I can open up my main and it works fine, but if I try to use it on a fresh bot account, it doesn't work. The bots have fishing rods and lures so they aren't missing anything
    Hey my version of this bot might help you. However it only works with 1 Trove open. I've removed the PID stuff so that it won't work with multiple windows but it will work with 1.



    #WinActivateForce
    SetWorkingDir %A_ScriptDir%
    Coordmode Pixel Screen

    Numpad6::
    WinGet, PID, PID, A
    WinGet, HWND, ID, A

    Address := 0x00989230
    Base := getProcessBaseAddress(HWND)
    WaterAddress := GetAddressWater(PID, Base, Address)
    LavaAddress := GetAddressLava(PID, Base, Address)
    ChocoAddress := GetAddressChoco(PID, Base, Address)

    WinMove, Trove,, 0, 0, 1280, 720

    MsgBox, 4,, Would you like to turn on auto drop boots?

    Lure := 9999
    Loop %Lure%
    {
    ifMsgBox Yes
    {
    Sleep, 86
    ControlSend,,{c up},Trove
    Sleep, 1000
    ControlSend,,{f down},Trove
    Sleep, 86
    ControlSend,,{f up},Trove
    Timer := 0
    While Timer = 0
    {
    Loop
    {
    CaughtWater := ReadMemory(PID, WaterAddress)
    CaughtLava := ReadMemory(PID, LavaAddress)
    CaughtChoco := ReadMemory(PID, ChocoAddress)
    If (CaughtWater = 1 or CaughtLava = 1 or CaughtChoco = 1)
    {
    Break
    }
    if Timer = 40
    {
    Break
    }
    Sleep, 1000
    Timer := Timer + 1
    }
    }
    Timer := 0
    ControlSend,,{f down},Trove
    Sleep, 86
    ControlSend,,{f up},Trove
    Sleep, 500
    Loop, 15
    {
    WinActivate, Trove
    Imagesearch, Foundx, Foundy, 0, 0, 1920, 1080, *70 %a_index%.png

    if ErrorLevel = 0
    {
    MouseClickDrag, Left, %Foundx%, %Foundy%, 779, 412, 5
    Sleep, 200
    Break
    }
    }
    Sleep, 500
    }
    else
    {
    ControlSend,,{c down}},Trove
    Sleep, 86
    ControlSend,,{c up},Trove
    Sleep, 1000
    ControlSend,,{f down}},Trove
    Sleep, 86
    ControlSend,,{f up},Trove
    Timer := 0
    While Timer = 0
    {
    Loop
    {
    CaughtWater := ReadMemory(PID, WaterAddress)
    CaughtLava := ReadMemory(PID, LavaAddress)
    CaughtChoco := ReadMemory(PID, ChocoAddress)
    If (CaughtWater = 1 or CaughtLava = 1 or CaughtChoco = 1)
    {
    Break
    }
    if Timer = 40
    {
    Break
    }
    Sleep, 1000
    Timer := Timer + 1
    }
    }
    Timer := 0
    ControlSend,,{f down}},Trove
    Sleep, 86
    ControlSend,,{f up},Trove
    Sleep, 2000
    }
    }
    ExitApp


    Numpad7::
    ExitApp

    GetAddressWater(PID, Base, Address)
    {
    pointerBase := base + Address
    y1 := ReadMemory(PID, pointerBase)
    y2 := ReadMemory(PID, y1 + 0x144)
    y3 := ReadMemory(PID, y2 + 0xe4)
    Return WaterAddress := (y3 + 0x70)
    }

    GetAddressLava(PID, Base, Address)
    {
    pointerBase := base + Address
    y1 := ReadMemory(PID, pointerBase)
    y2 := ReadMemory(PID, y1 + 0x144)
    y3 := ReadMemory(PID, y2 + 0xe4)
    Return LavaAddress := (y3 + 0x514)
    }

    GetAddressChoco(PID, Base, Address)
    {
    pointerBase := base + Address
    y1 := ReadMemory(PID, pointerBase)
    y2 := ReadMemory(PID, y1 + 0x144)
    y3 := ReadMemory(PID, y2 + 0xe4)
    Return ChocoAddress := (y3 + 0x2c0)
    }

    getProcessBaseAddress(HWND)
    {
    return DllCall( A_PtrSize = 4
    ? "GetWindowLong"
    : "GetWindowLongPtr"
    , "Ptr", HWND
    , "Int", -6
    , "Int64") ; Use Int64 to prevent negative overflow when AHK is 32 bit and target process is 64bit
    ; If DLL call fails, returned value will = 0
    }

    ReadMemory(PID, MADDRESS)
    {
    VarSetCapacity(MVALUE,4,0)
    ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", PID, "UInt")
    ;DllCall("ReadProcessMemory","UInt",ProcessHandle, "UInt",MADDRESS,"Str",MVALUE,"UInt",4,"UInt *",0)
    DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
    Loop 4
    result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
    return, result
    }
    Last edited by LeetSpeak3; 08-04-2015 at 03:01 AM.

  4. #64
    K4SHZ's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    hey dude Auto Hp is Not Working i tried and put value 50% it doesn't work

  5. #65
    rafaelventura's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Dont work bro
    i cannot fishing anything..

    its run but dont fish

  6. #66
    Soulder's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    A new patch just went up, give him time to update the bot

  7. #67
    taejim's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Trove
    Posts
    301
    Reputation
    10
    Thanks
    892
    My Mood
    Devilish
    @maddoggy00 please close this thread

    Hi guys, I'm working on a new bot which is much better with much more features and hopefully a better and stable boot drop, I will not be releasing anything until the new bot is ready to be release so please be patient thank you all for your support

    IMPORTANT NOTE: I'm looking for 4 testers with Window 7 x32 and x64, and Window 8 x32 and x64. If you are interested private msg me your Window version and what bit is it and also your freetime info. I need testers for my stable boot drop

    Code:
    My Trove Bot (OUTDATED) LazyFishing v1.9
    If you appreciate what i have done:

    1. Press the Thanks button above and give me reputation <3

    2. You can donate me if you feel like it, any amount is much appreciate.


  8. #68
    qztr's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    133
    Reputation
    10
    Thanks
    94
    My Mood
    Dead
    Quote Originally Posted by taejim View Post
    @maddoggy00 please close this thread

    Hi guys, I'm working on a new bot which is much better with much more features and hopefully a better and stable boot drop, I will not be releasing anything until the new bot is ready to be release so please be patient thank you all for your support

    IMPORTANT NOTE: I'm looking for 4 testers with Window 7 x32 and x64, and Window 8 x32 and x64. If you are interested private msg me your Window version and what bit is it and also your freetime info. I need testers for my stable boot drop
    If you need Windows 10 64 bit user, hit me up.
    MPGH staff is a joke.

  9. #69
    vincentcroninchestnutst's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Before you close could you direct me to update, thanks
    pointerBase := base + 0x0098E77C
    for autohp
    Any ideas for the z1-3?

Page 5 of 5 FirstFirst ... 345

Similar Threads

  1. [Discussion] Has Anybody gotten banned from trove for using fish bots?
    By alphademon in forum Trove Discussions & Help
    Replies: 13
    Last Post: 08-20-2015, 09:41 PM
  2. [Outdated] TaeJim's Fishing bot (UPDATE: 29/07/2015)
    By taejim in forum Trove Hacks & Cheats
    Replies: 46
    Last Post: 07-31-2015, 11:46 AM
  3. Trove - A Working Fishing Bot.
    By AnonyDope in forum Trove Discussions & Help
    Replies: 2
    Last Post: 07-26-2015, 01:40 PM
  4. How to make Trove Fish Bot Script
    By BlackSnake0904 in forum Trove Discussions & Help
    Replies: 1
    Last Post: 07-23-2015, 01:19 PM
  5. RS bot scripts
    By alvin0317 in forum Runescape Hacks / Bots
    Replies: 2
    Last Post: 05-02-2009, 10:59 PM