Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.30 KB | None | 0 0
  1. from src.Module import Module
  2. import commands
  3.  
  4. class Module_CommandCount():
  5.  
  6.     def GetHooks(self):
  7.         return (('PRIVMSG', self.PrivmsgCallback),)
  8.  
  9.     def GetCommands(self):
  10.         return (('~cmdcount', self.CommandCountCallback),)
  11.  
  12.     def PrivmsgCallback(self, Args):
  13.         print Args
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement