Jump to content

spider0804

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by spider0804

  1. Thankyou CODE#include <misc.au3> HotKeySet("{F1}", "start") HotKeySet("{F2}", "stop") HotKeySet("{F3}", "escape") Hotkeyset("{F4}", "move") main() Func main() While 1 Sleep(50) WEnd EndFunc;==>main Func start() While WinActive("Star Wars") $I = 1 Do MouseMove(1124, 524) MouseDown("Left") Sleep(600) Send("5432") MouseUp("Left") MouseDown("Left") Sleep(600) Send("5342") MouseUp("Left") $I += 1 Sleep(600) Until $I = 4 Sleep(10000) WEnd EndFunc;==>start Func stop() main() EndFunc;==>stop Func escape() Exit EndFunc;==>escape Func move() MouseMove(1124, 524) EndFunc ;==>move thats what i have now, now is there a way to make autoit ovveride the game commands, the game reconizes f1 f2 f3 f4 unless its windowed mode but can i make it bypass the game and still do the commands in non windowed mode
  2. well i read the tutorial but its greek to mei dont know what any of that means i just took a script someone wrote for me and changed it so it works how i want it to and the only way i figured that out was i knew it was just pressing numbers and i set the mouse position but as for code i dont know bubkis
  3. i want it to put the moust position at the coords at f1, start with f2 and end with f3
  4. im not asking for a demo im asking for help with input
  5. #include <misc.au3> ; Local $Mousecords[2], $Started = 1 $end = 0 While $end = 0 WinWaitActive("Star Wars") If _IsPressed(70) Then $Mousecords = MouseGetPos() Beep(800, 100) While _IsPressed(70) ; WEnd EndIf If _IsPressed(71) Then If $Started = 0 Then $Started = 1 Beep(800, 100) Else $Started = 0 Beep(400, 100) EndIf While _IsPressed(71) ; WEnd EndIf If $Started = 1 Then $I = 1 Do MouseMove(1124,524) MouseDown("Left") Sleep(600) Send("5432") MouseUp("Left") MouseDown("Left") Sleep(400) Send("5342") MouseUp("Left") $I += 1 Sleep(200) Until $I = 4 Sleep(54325000) EndIf WEnd how would i bind f1 to start this script and f2 to stop it?
  6. and sorry about doubleposts but every time i goto edit it says i dont have permission...anyway taking away your restrictions i got your macro to work but its still only set for one area destroy can be in the 1 , 3, 5 , 6 o clock positions and if your macro is say set as destroy is option number 2, and examine is option 2 on that item....it examines it and blocks out all other functions becuse the examine window covers everything also the destroy confirm spacing is different for different items, and most of the time it just plain misses what am i doin wrong lol
  7. like what i mean is the mouse cords are 1138,776 and i tried swg in windowed and non windowed mode, nothing happens i inputed it $Mousecords = MouseGetPos(1138,776) there
  8. in the game star wars galaxies i know there scripts out there that delete unwanted items while grinding spots for junk loot, the problem i run into is when i radial an item the destroy option can be in spot 3 4 5 6 and if i have the mouse click say spot 3 first , it could be a different option on another item , like clothing is there anyway to get autoit to realize where the DESTROY option is, or better yet does anyone have a premade script for this?
×
×
  • Create New...