Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. ; Highlight Logger by TomCoyote
  2. ; After first highlight has been recorded, a new window
  3. ; will open called @highlights, Right click on the window
  4. ; tab and choose LOG (on) if you want to keep a record
  5. ; Please do not coppy K? K.
  6.  
  7. on $*:text:/(.+)/Si:#:{
  8. if ($me isin $regml(1) && !$($+(%,highlightflood,.,$nick),2)) {
  9. set -u30 $+(%,highlightflood,.,$nick) on
  10. window -De @ $+ $network $+ - $+ Highlights
  11. echo @ $+ $network $+ - $+ Highlights $timestamp $nick has highlighted you in # with the message: $regml(1)
  12. }
  13. }
  14. on $*:action:/(.+)/Si:#:{
  15. if ($me isin $regml(1) && !$($+(%,highlightflood,.,$nick),2)) {
  16. set -u30 $+(%,highlightflood,.,$nick) on
  17. window -De @ $+ $network $+ - $+ Highlights
  18. echo @ $+ $network $+ - $+ Highlights $timestamp $nick has taken action on you in # with the message: $nick $regml(1)
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement