request for making a fishing script:
I found these cursor id for a game RIFT:
; Pressed 1(fishing rod) -> new cursor id = 0x29BF10B9 (Bluehand cursor)
; When clicked -> New id = 0x045210E1 (arrow cursor)
; Fish Caught -> New cursor id = 0x20BE10FD (fish cursor)
These cursor i found their files as well through resource viewer software. Added these in attachment.
Here is what i tried so far to get info:
What i want is a way to detect the button "Take All". ( Window spy tool autoit gives all 0 value). Resource viewer got no button for me :(
A script that remembers USER mouse position on start and keeps that for as long this script is running as $aPos[0] and $aPos[1]. Whenever players or script moves the mouse, it returns back to that position with random pixel of plus minus 2px.
And as last part. Detect mouse change and validate it with switch case ( If cursor id = 0x29BF10B9 then MouseClick (Left)
If cursor id = 0x20BE10FD then MouseClick(Left) sleep 500 Loot()
And Func Loot() is the Detect Take All Button and do MouseClick(Left) and start over the script.
I found these cursor id for a game RIFT:
; Pressed 1(fishing rod) -> new cursor id = 0x29BF10B9 (Bluehand cursor)
; When clicked -> New id = 0x045210E1 (arrow cursor)
; Fish Caught -> New cursor id = 0x20BE10FD (fish cursor)
These cursor i found their files as well through resource viewer software. Added these in attachment.
Here is what i tried so far to get info:
What i want is a way to detect the button "Take All". ( Window spy tool autoit gives all 0 value). Resource viewer got no button for me :(
A script that remembers USER mouse position on start and keeps that for as long this script is running as $aPos[0] and $aPos[1]. Whenever players or script moves the mouse, it returns back to that position with random pixel of plus minus 2px.
And as last part. Detect mouse change and validate it with switch case ( If cursor id = 0x29BF10B9 then MouseClick (Left)
If cursor id = 0x20BE10FD then MouseClick(Left) sleep 500 Loot()
And Func Loot() is the Detect Take All Button and do MouseClick(Left) and start over the script.