How to Spam poke somebody

Norvik

Retired Staff
Contributor
Jul 18, 2015
635
588
157
Hello my friends :)
If you want to annoy somebody you can poke him very often. But it sucks to press your right mouse button and select poke every time. Here is the solution!
Rightclick this Toolbar and select "Customize Toolbar"
afb3073fb4.jpg

If you done this, scroll down until you can see "Poke Client"
1748c143b1.png


Double click it so it's in the right box. Now you should see this litte Button in your toolbar.
959f21dfa8.png

Just click at the person you want to annoy and spam that button while you are pressing your enter key as often you can :)

If you dont want click enter and that button, you can use my AutoIt Script. Just edit mouseclick("left",265,47,1) and mouseclick("left",954,554,1) with your coordinates of this button
959f21dfa8.png
and the OK Button of this window
179f168ee5.jpg


Code:
HotKeySet ("{ENTER}", "Start")
HotKeySet ("{ESC}", "_Exit")

While 1
Sleep(0)
WEnd

Func Start()
While 1
mouseclick("left",265,47,1)
mouseclick("left",954,554,1)
WEnd
EndFunc

Func _Exit()
Exit
EndFunc

You can find your screen coordinates by unsing the Finder Tool which is included in the AutoIt Window Info Tool.
 
Top