Taishi 0 Posted September 29, 2010 my friend help me make this, well really not a friend someone that I just met. I read this and kinda understand it under WinWaitActive he had Game name so he told me to put whatever it was in task manager under process's in there so i did......The C40R.exe but when i try to use the hotkey f1 in game it doesnt work unless i click on the desktop to start it and pause it, I kinda need help on making it work on the game instead of clicking on desktop, The other thing i been searching, is it possible to use autoit for picking up range, i want to increase the range of picking up items in the current spot of the character, because the game i play you pretty much have to be right on top of the item to pick it up..... any help would be greatly appreciated #RequireAdmin $milliseconds = 4000 Opt('SendKeyDelay', 100) $time = TimerInit() HotKeySet("{V}" , "Pause" ) ; Change or leave the key to what you want $Paused = True Func end() ; sends spacebar WinWaitActive("C40R.exe") ; Look in Task Manager to get the exact name Do Send('{SPACE}', $milliseconds) ; sends the spacebar for 4 seconds every 100 millseconds Until TimerDiff($time) > $milliseconds Opt('SendKeyDelay', 100) $time = TimerInit() EndFunc While 1 end() ; loops the function WEnd Func Pause() ; Pauses your Looter till you press your Hotkey again $Paused = Not $Paused While $Paused Sleep(100) ToolTip('Paused', 691, 325) WEnd ToolTip("") EndFunc Michael Share this post Link to post Share on other sites
taietel 34 Posted September 29, 2010 I guess you missed this one!...M.I. Things you should know first...In the beginning there was only ONE! And zero...Progs:Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text Share this post Link to post Share on other sites
Taishi 0 Posted September 29, 2010 sorry i did miss that, truely sorry Share this post Link to post Share on other sites