예제 #1
0
파일: track.py 프로젝트: Eagull/pyrefly
	def onLoad(self, bot):
		Plugin.onLoad(self, bot)
		self._users = bot.getDb().table('users')
		self._userData = {}
		for row in self._users.getAll():
			self._userData[row['mask']] = row
		self._loadUsers()
예제 #2
0
파일: broken.py 프로젝트: Eagull/pyrefly
	def onLoad(self, bot):
		Plugin.onLoad(self, bot)
예제 #3
0
	def onLoad(self, bot):
		Plugin.onLoad(self, bot)
		self.dictionary = self.bot.db.table('dictionary')
예제 #4
0
파일: room.py 프로젝트: nullalx/pyrefly
	def onLoad(self, bot):
		Plugin.onLoad(self, bot)
		self._rooms = self.bot.db.table('rooms')
예제 #5
0
	def onLoad(self, bot):
		Plugin.onLoad(self, bot)
		self._table = bot.getDb().table('roleMembers')
		self._refresh()