Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. from plugins import plugin
  3. import globalv
  4. class pluginClass(plugin):
  5. def gettype(self):
  6. return "command"
  7. def action(self, complete):
  8. names=globalv.channelUsers[complete.channel()][:]
  9. return ["PRIVMSG $C$ :"+str(len(names))]
  10. def describe(self, complete):
  11. return ["PRIVMSG $C$ :I am the !say module","PRIVMSG $C$ :Usage:","PRIVMSG $C$ :!say [input]"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement