Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate

anti-recoil script question (script included)


  • Please log in to reply
19 replies to this topic
Ahoy
  • Members
  • 22 posts
  • Last active: --
  • Joined: 12 Mar 2012
Sorry, i didnt log in! :?

That was me above there, i am trying to complete this task by myself in light of learning and not being so lazy!

But if you wouldn't mind helping me with the mouse movement, i would appreciate that.

Thanks

Frankie
  • Members
  • 2930 posts
  • Last active: Feb 05 2015 02:49 PM
  • Joined: 02 Nov 2008
Sorry, but this isn't a script request forum. I wrote the above code after the OP gave at least some effort, and it looked fun at the time.

Try plugging in your data to the script, and then replacing the mouse moving function with your own.

HTH
aboutscriptappsscripts
Request Video Tutorials Here or View Current Tutorials on YouTube
Any code ⇈ above ⇈ requires AutoHotkey_L to run

Ahoy
  • Members
  • 22 posts
  • Last active: --
  • Joined: 12 Mar 2012
Will do, if i do run into any trouble, i guess a new thread would be acceptable?

Apologies again about this but its just your script holds so much that i would like to achieve.

Hope to speak soon.

Ahoy
  • Members
  • 22 posts
  • Last active: --
  • Joined: 12 Mar 2012
Oh, by the way, the OP didn't actually make those scripts, they were taken from this site:

ximhub.com

But your sentiment is still true, and I appreciate that,

Thanks

drsnake77400
  • Members
  • 2 posts
  • Last active: Jul 28 2012 08:40 PM
  • Joined: 28 Jul 2012
Hello,

I come to ask for help because I do not really understand how a script works. I mean, I do not know what are the controls.

For example what command to enable or disable the script. Could you help me?

I am looking for in the script below the key used to power on and off the script according to my wishes.

Thank you for your answers.

#SingleInstance
ActivateScript = 0




~Home::
KeyWait, Home
GetKeyState, HomeState, Home, T
If HomeState = D
{
    ActivateScript = 1

}
else
{
    ActivateScript = 0

}
return

E::
if ActivateScript = 1
{
    Loop
    
        {
            GetKeyState, EButtonState, E, P
            If EButtonState = D
            {

send, {down down}
sleep, 80
send, {down up}
sleep, 90

            }
            If EButtonState = U
            {
             
                break
            }
        }
     
        {
       
        }
    }
   

exit

return