Advertisement
phlud

relcn

Dec 20th, 2015
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.31 KB | None | 0 0
  1. alias relcn {
  2. global cnick cuh crep crep1
  3. say "CTCP \002$crep\002 REPLY from ${cnick}!${cuh}: [join $crep1]"
  4. complete
  5. }
  6. on ctcp_reply {
  7. add2hash [string tolower [nick]] [user]@[host]
  8. global cnick cuh crep crep1
  9. set cnick [nick]
  10. set cuh [user]@[host]
  11. set crep [lindex [args] 1]
  12. set crep1 [lrange [args] 2 end]
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement