Guest User

Untitled

a guest
Mar 6th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.34 KB | None | 0 0
  1. namespace eval Hordes {
  2.    bind pub - "!attaque5" [namespace current]::attaque5_pub
  3.    bind time - "00 01 * * *" [namespace current]::attaque5
  4.  
  5.    proc attaque5_pub { nick uhost handle chan args } {
  6.       [namespace current]:: attaque5 [list [strftime "%M %H %d %m %y"]]
  7.    }
  8. }
  9.  
  10. proc ::Hordes::attaque5 {min hour day month year} {
  11.    ...
  12. }
Add Comment
Please, Sign In to add comment