Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2022
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | Help | 0 0
  1. /*
  2. Notes:
  3. Set message in line 6.
  4. Set delay between messages (in milliseconds) in line 7.
  5. */
  6.  
  7. #singleInstance force
  8. delay = 60500
  9. msg = Hi guys. I'm very apologize for the delay. I found a bug issue about Matchmaking and it's not good for u guys to try this. I will fix this out for a few days and after we sure that it's work for many people. We will do the official announcement Our team try to be quick as much as possible for about this problem. I will try to solve this within this week. BUG : 1. Sometime Match Making match to a person that close the app already (that's mean it will match offline person forever)
  10.  
  11. `:: ; Toggle autoTyper
  12. send % !auto ? msg "{enter}" :
  13. setTimer, autoTyper, % !auto ? delay : "off"
  14. notify("Auto-Typer", (auto:=!auto) ? "ON" : "OFF")
  15. return
  16. autoTyper:
  17. send %msg%{enter}
  18. return
  19.  
  20. notify(alert, status = 0) {
  21. global
  22. gui +alwaysOnTop +toolWindow -caption +E0x20
  23. gui color, black
  24. gui font, cWhite s40 bold, arial
  25. gui add, text, vNotification center w700
  26. alert := alert " " status
  27. guiControl,, notification, % alert
  28. gui, show, autosize
  29. opacity = 0
  30. sleep 775 ; Maintain notification
  31. gui destroy
  32. }
  33.  
  34. z::
  35. {
  36. send, {Up}
  37. send, ^a
  38. send, {BS}
  39. send, {Enter}
  40. send, {Enter}
  41. sleep, 100
  42. }
  43. return
Tags: autohotkey
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement