Yoseph

mirc txt output

Jul 3rd, 2015
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. alias obsinit {
  2. /set %mychan #alukraid-stream
  3. /set %maxlines 10
  4.  
  5. /set %tvchan $remove(%mychan,$left(%mychan,1))
  6. /set %obsfile %tvchan $+ .txt
  7.  
  8. /fopen -o %obsfile %obsfile
  9. /fclose %obsfile
  10.  
  11. /join %mychan
  12.  
  13. }
  14.  
  15.  
  16. alias logchat {
  17. /var %lns = $lines(%obsfile)
  18. if (%lns == %maxlines) { /write -dl1 %obsfile | /write %obsfile $1- }
  19. else { /write %obsfile $1- }
  20. }
  21.  
  22.  
  23. on 1:START:/obsinit
  24.  
  25. on 1:TEXT:*:%mychan:/logchat $nick - $1-
Advertisement
Add Comment
Please, Sign In to add comment