Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;Pixel Blipper v1.0.1
- ;https://pastebin.com/u/jcunews
- ;https://www.reddit.com/user/jcunews1
- ;https://greasyfork.org/en/users/85671-jcunews
- ;all time values are in milliseconds. 1 second = 1000ms.
- ;time interval to show pixel. must be greater than zero.
- interval:= 60 * 1000
- ;time duration to hide pixel after it has been shown. must be greater than zero.
- duration:= 100
- ;size of pixel.
- size:= 1
- ;level of pixel opacity. 0 to 255. 0 = invisible. 255 = visible.
- opacity:= 1
- ;monitor number to show pixel. 0 to N.
- monitor:= 0
- sysget m, monitor, %monitor%
- mright:= mright - size
- mbottom:= mbottom - size
- gui add, text, w0 h0
- gui +alwaysontop -caption +lastfound +toolwindow
- winset transparent, %opacity%
- gui color, black
- settimer show, %interval%
- return
- show:
- gui show, % "noactivate x" mright " y" mbottom " w" size " h" size
- settimer hide, -%duration%
- return
- hide:
- gui hide
- return
- guiclose:
- guiescape:
- exitapp
Add Comment
Please, Sign In to add comment