Don't like ads? PRO users don't see any ads ;-)
Guest

rsay - msg command

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. plugin.rsay = function (target, from, arg, arg2)
  2.         if arg2 then
  3.                 irc.say(arg, arg2)
  4.         end
  5. end
  6.  
  7.  
  8.  
  9.  
  10. plugin.msg = function (target, from, arg, arg2)
  11.         if arg2 then
  12.                 irc.say(target, "/msg " ..arg .." " ..arg2)
  13.         end
  14. end