Jump to content

Recommended Posts

Posted (edited)

Hey,

This is a little script I made which was inspired by The.Meger. How he always types the same thing in every post. Well now its simple.

#NoTrayIcon

HotKeySet("^!1", "_send")
HotKeySet("{esc}", "MyExit")

$text = "Hey," & @CRLF & @CRLF & "" & @CRLF & @CRLF & "Thanks," & @CRLF & "Secure"

While 1
    Sleep(100)
Wend

Func _send()
    Send($text)
EndFunc

Func MyExit()
    Exit
EndFunc

Nothing special but I like to think of it as me being lazy.

Thanks,

Secure

Edited by Secure_ICT
Posted

Sorry to ruin both of your posts, but, once again, another useless simple script.

Kurt

Awaiting Diablo III..

Posted

Hey,

This is a little script I made which was inspired by The.Meger. How he always types the same thing in every post. Well now its simple.

#NoTrayIcon

HotKeySet("^!1", "_send")
HotKeySet("{esc}", "MyExit")

$text = "Hey," & @CRLF & @CRLF & "" & @CRLF & @CRLF & "Thanks," & @CRLF & "Secure"

While 1
    ; Sleep
Wend

Func _send()
    Send($text)
EndFunc

Func MyExit()
    Exit
EndFunc

Nothing special but I like to think of it as me being lazy.

Thanks,

Secure

there isn't a sleep in that loop, so this thing is going to use 100% cpu all the time just for a signature.... hmm.......

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...