Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pixel information tool
#6
(02-08-2015, 04:43 PM)Mephobia Wrote:  I use ColorPic to get colors: http://www.iconico.com/colorpic/

AND

I use Greenshot to get coordinates: http://getgreenshot.org/

for coordinates i use this autoit script...iim not sure these are correct coordinates in game..

Code:
#AutoIt3Wrapper_UseX64=n

; Set the Escape hotkey to terminate the script.
HotKeySet("{ESC}", "_Terminate")

Example()

Func Example()
    ; Initialize a Local variable.
    Local $aMgp = 0

    ; Create an endless loop, 1 will always be 1 therefore True.
    While 1
        ; Assign a Local variable the coords of the cursor (array).
        $aMgp = MouseGetPos()

        ; Display a tooltip near the cursor with its coords.
        ToolTip("x: " & $aMgp[0] & ", y: " & $aMgp[1], $aMgp[0] + 10, $aMgp[1] + 10)

        ; Avoid high CPU usage.
        Sleep(50)
    WEnd
EndFunc   ;==>Example

Func _Terminate()
    Exit
EndFunc   ;==>_Terminate
Reply
 


Messages In This Thread
Pixel information tool - by Snarg - 02-08-2015, 11:08 AM
RE: Pixel information tool - by GkevinOD - 02-08-2015, 11:18 AM
RE: Pixel information tool - by Snarg - 02-08-2015, 11:27 AM
RE: Pixel information tool - by Henk500 - 02-09-2015, 03:22 AM
RE: Pixel information tool - by Snarg - 02-09-2015, 09:12 AM
RE: Pixel information tool - by Henk500 - 02-09-2015, 07:24 PM
RE: Pixel information tool - by safar46 - 02-08-2015, 01:11 PM
RE: Pixel information tool - by Mephobia - 02-08-2015, 04:43 PM
RE: Pixel information tool - by Henk500 - 02-08-2015, 10:19 PM
RE: Pixel information tool - by Snarg - 02-09-2015, 12:12 AM
RE: Pixel information tool - by Henk500 - 02-09-2015, 03:19 AM
RE: Pixel information tool - by kojometa - 02-09-2015, 01:47 AM
RE: Pixel information tool - by Snarg - 02-09-2015, 01:57 AM
RE: Pixel information tool - by dinobot - 02-09-2015, 03:47 AM
RE: Pixel information tool - by Henk500 - 02-09-2015, 07:01 AM
RE: Pixel information tool - by redclif - 02-09-2015, 04:43 PM
RE: Pixel information tool - by FastFrench - 02-12-2015, 03:31 AM
RE: Pixel information tool - by Snarg - 02-12-2015, 03:38 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website