Results 1 to 2 of 2

[AHK] Annoy someone using your computer

This is a discussion on [AHK] Annoy someone using your computer within the Source Code Samples forums, part of the Programming category; What it does is it makes down and right move real fast and makes up and left go real slow ...

  1. #1
    Mr Kitty is offline Banned
    Join Date
    Jul 2010
    Posts
    70

    Default [AHK] Annoy someone using your computer

    What it does is it makes down and right move real fast and makes up and left go real slow

    Code:
    #SingleInstance, force
    #Escapechar ~
    #notrayicon
    CoordMode, Mouse, Screen
    
    MouseGetPos, MouseX, MouseY 
    CurX := MouseX
    CurY := MouseY
     
    loop
    {
      MouseGetPos, MouseX, MouseY
     
      X := MouseX - CurX
      Y := MouseY - CurY
     
      if X > 0
        X := X - X - X
      if Y > 0
        Y := Y - Y - Y
      if X < 0
        X := Abs(X)
      if Y < 0
        Y := Abs(Y)
     
      MouseMove, X, Y, 0, R
     
      MouseGetPos, MouseX, MouseY
     
      CurX := MouseX
      CurY := MouseY
      Sleep 40
    }

  2.   Alt These ads help cover server costs and such.


  3. #2
    Seatbelt99's Avatar
    Seatbelt99 is offline Site Owner
    Join Date
    Apr 2008
    Location
    Somewhere North of you
    Posts
    3,431

    Default

    lol. interesting.

    Thanks for the source!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Facebook Bots | Admin Forum