Advertisement
Guest User

TrollType

a guest
Aug 1st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; This script was made by rari-teh, aka LHOOQatme. The author recognizes they are a fucking bitch for taking their time to code this.
  2. ; Ding and carriage return sounds by ramsamba
  3. ; Keypress sound by ddohler
  4.  
  5. ~Enter::
  6. if entrances > 0
  7. {
  8.     entrances += 1
  9.     return
  10. }
  11. entrances = 1
  12. SetTimer, ListenEnter, 300
  13. SoundPlay, alert.wav
  14. return
  15.  
  16. ListenEnter:
  17. SetTimer, ListenEnter, off
  18. if entrances > 1
  19. {
  20.     SoundPlay, update.wav, 1
  21. }
  22. entrances = 0
  23. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement