Jump to content

SofaKingWeTardEd

Active Members
  • Posts

    59
  • Joined

  • Last visited

Profile Information

  • Location
    England

SofaKingWeTardEd's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Thanks mate Looks like I should just carry on playing the game properly. I don't really have much time to learn C++ or any other language just to cheat on a game. My last post was for Volly, about what I wrote up on the spot, was exactly the same as the script he asked for. I guess this thread is over now
  2. That is what I tried. I eventually found the .au3 and it was exact lol
  3. Nothing amazing to be honest... Here's a quick look at it, as I'm writing this up as I am posting. Opt("MouseCoordMode",2) HotKeySet ("{F1}","_Move") HotKeySet ("{F2}","_End") While 1 Sleep (1) WEnd Func _Move() MouseMove (200,200,0) EndFunc Func _End() Exit EndFunc Still trying to understand AutoIt. I've also tried various mouse speeds, none of them work.
  4. Guess nobody feels the need to help then
  5. Just a quick question & wonder... On this FPS game I am playing (Enemy Territory: Quake Wars if you must know) - I am trying to move the Crosshair and the MouseMove command isn't working. There seem's to be no movement whatsoever. I can make it shoot, walk/run/sprint to wherever, but not move the crosshair/mouse. I know the Mouse cursor ID is '2'. I am just using the ordinary command to move the mouse, is there any variant of how I could move the crosshair? Would be very much appreciated if I got a reply
  6. Lol thank you I'll try.
  7. You shouldn't be suprised but; I don't really understand that stuff lol
  8. First of all - I'm a complete newb when it comes to Autoit. - I'm playing a game called Enemy Territory: Quake Wars - and I was wondering if it's possible to null the Sniper recoil? The recoil is HUGE on that game for a Sniper Rifle. But I'm not entirely sure where to start... I have my script, simple (like me) and you will most definatly laugh at it. But I do try. Here's the code I was/am using: #include <Misc.au3> Opt ("MouseCoordMode",2) HotKeySet ("{ESC}","_ExitP") While 1 If _IsPressed(0x01) Then MouseMove (0,0,10) EndIf WEnd Func _ExitP() Exit EndFunc I've had other codes with the MouseCoord set to 0 & 1 before to no avail. Although I can use like Send ("w") etc to move forward, but no mouse movement.. any help please? I've had WinWaitActive ("ETQW"), and many others and it's just all gone tits up.
  9. You're a legend! Thank you so much matey! Edit: Doesn't always work, but does every now and then (
  10. Hey, I've popped back for yet another question Is it possible to MouseClick Left AND Right at the exact same time, not 1 bit of delay at all..? And is it possible to have the Left mouse click to be a hotkey? Thank youuu!
  11. Kinda like: $x = ControlGetText ("Window","","[CLASSNN:TStaticTextX]") MsgBox (46,"Window Name","X=" & $x,0)
  12. Nevermind! I found out by trail and error! Thank you Tomb for your help. Hugely appreciated!
  13. ControlGetText I was/am using. The Text inside TStaticTextX I would like displayed inside the MsgBox? :/
  14. Is there no other way? That's looks way out of my league. Lol
×
×
  • Create New...