Page 2 of 9 FirstFirst 1234 ... LastLast
Results 16 to 30 of 122
  1. #16
    matrx300's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    4
    For some reason when you multi-client the scripts randomly stop after a few mins

  2. #17
    saed's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    singapore
    Posts
    12
    Reputation
    10
    Thanks
    0
    Hey thanks man!!

  3. #18
    owata1213's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    today i got banned looool
    be careful

  4. #19
    rwcblazer's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    Alameda CA
    Posts
    15
    Reputation
    10
    Thanks
    2
    My Mood
    Lonely
    Quote Originally Posted by owata1213 View Post
    today i got banned looool
    be careful
    I've been using it all day on 2 accounts since it came out and haven't been banned.

  5. #20
    owata1213's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by rwcblazer View Post
    I've been using it all day on 2 accounts since it came out and haven't been banned.
    really?
    im so unlucky man ;(

  6. #21
    kablaggio's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    26
    MouseClickDrag, L, xxx, xxx, xxx, xxx

    - - - Updated - - -

    SendEvent {Click xxx, xxx, down}{click xxx, xxx, up}

  7. #22
    dragonkid1102's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    how to auto drop "Old Boot" ???

  8. #23
    DeadJak's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    stopped working after todays patch

  9. #24
    darkjesse413's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by DeadJak View Post
    stopped working after todays patch
    They ALWAYS stop working after a patch. The values need to be updated.

  10. #25
    eliel2000's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive
    Hey thanks man!!

  11. #26
    DeadJak's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by darkjesse413 View Post
    They ALWAYS stop working after a patch. The values need to be updated.
    Well how would you go about finding the new values? not very familiar with the process

  12. #27
    darkjesse413's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by DeadJak View Post
    Well how would you go about finding the new values? not very familiar with the process
    There's a video in one of the posts.. Forgot which what one

  13. #28
    darkjesse413's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Any updates Zog?

  14. #29
    IllusI0n1st's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    How do you even use AHK, I'm interested in learning the language

  15. #30
    kablaggio's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    26
    CHOCOLATE

    ACTIVATE with Numpad6


    #WinActivateForce
    Numpad6::
    WinGet, pidn, PID, A
    pid := pidn
    WinGet, hwnds, ID, A
    Handle := hwnds
    InputBox, Lure, Lure's, How many Lure's do you have in inventory
    Base := getProcessBaseAddress()
    WaterAddress := GetAddressWater(Base, 0x0092789C)
    Loop %Lure%
    {
    ControlSend, , {f down}, ahk_pid %pid%
    Sleep, 86
    ControlSend, , {f up}, ahk_pid %pid%
    Sleep, 2000
    CaughtWater := ReadMemory(WaterAddress)
    Timer := 0
    While Timer = 0
    {
    Loop
    {
    If (CaughtWater = 1)
    {
    Break
    }
    if Timer = 40
    {
    ControlSend, , {f down}, ahk_pid %pid%
    Sleep, 86
    ControlSend, , {f up}, ahk_pid %pid%
    Break
    }
    Sleep, 1000
    CaughtWater := ReadMemory(WaterAddress)
    Timer := Timer + 1
    }
    }
    Timer := 0
    ControlSend, , {f down}, ahk_pid %pid%
    Sleep, 86
    ControlSend, , {f up}, ahk_pid %pid%
    Sleep, 2000
    }
    ExitApp

    CheckFishingState(base)
    {
    global FishingState
    pointerBase := base + 0x0092789C
    y1 := ReadMemory(pointerBase)
    y2 := ReadMemory(y1 + 0x49c)
    y3 := ReadMemory(y2 + 0x144)
    Return FishingState := ReadMemory(y3)
    }



    Numpad7::
    ExitApp

    getProcessBaseAddress()
    {
    Global Handle
    return DllCall( A_PtrSize = 4
    ? "GetWindowLong"
    : "GetWindowLongPtr"
    , "Ptr", Handle
    , "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
    }

    GetAddressWater(Base, Address)
    {
    pointerBase := base + Address
    y1 := ReadMemory(pointerBase)
    y2 := ReadMemory(y1 + 0x2a8)
    y3 := ReadMemory(y2 + 0x8c)
    Return WaterAddress := (y3 + 0x49c)
    }

    ReadMemory(MADDRESS)
    {
    Global pid
    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 kablaggio; 06-18-2015 at 05:29 AM.

Page 2 of 9 FirstFirst 1234 ... LastLast

Similar Threads

  1. How to make Trove Fish Bot Script
    By BlackSnake0904 in forum Trove Discussions & Help
    Replies: 1
    Last Post: 07-23-2015, 01:19 PM
  2. I need a working Lava fishing script
    By keanu2011 in forum Trove Discussions & Help
    Replies: 0
    Last Post: 07-13-2015, 06:26 PM
  3. Can someone tell me a working fishing pro script?
    By Steele Duke in forum Runescape Hacks / Bots
    Replies: 8
    Last Post: 05-24-2011, 05:31 PM
  4. Habbohotel Scripts
    By h0ang in forum General Game Hacking
    Replies: 8
    Last Post: 05-18-2007, 05:19 AM
  5. Fishing Store is upgraded! Holy Shit
    By Kyojiro in forum General
    Replies: 13
    Last Post: 04-22-2006, 08:20 PM