It is posible to release a Program like The hotkeys one but one that ignores if u have tibia client open...just presing X hotkey every Y time period..so in this way we could use it on flash as well.
thanks... bd forever xD
Hans Henrik
01-27-2015, 20:44
AutoIt is good for this stuff, check out
;why this isn't the default beats me...
AutoItSetOption("MouseClickDelay",0);
AutoItSetOption("MouseClickDownDelay",0);
AutoItSetOption("MouseClickDragDelay",0);
AutoItSetOption("SendKeyDelay",0);
AutoItSetOption("SendKeyDownDelay",0);
AutoItSetOption("WinWaitDelay",0);
AutoItSetOption("MustDeclareVars",1);
#include <Misc.au3>
#include <GDIPlus.au3>
HotKeySet("5","clickfunction");
Func clickfunction()
Local $hDLL = DllOpen("user32.dll");'
_IsPressed(36, $hDLL);reset...4
While Not _IsPressed(36, $hDLL)
MouseClick("left");
Sleep(1);
WEnd
DllClose($hDLL);
EndFunc
While 1
Sleep(1000);
WEnd
it's what i use for (NSFW!!) this flash game (http://www.angelfire.com/mn3/pokegirls/windowgirl.html)
Powered by vBulletin® Version 4.2.5 Copyright © 2021 vBulletin Solutions Inc. All rights reserved.