XZZ/worker/emmm.py

16 lines
372 B
Python
Raw Normal View History

2020-02-27 21:47:36 +08:00
from zzcore import StdAns
2020-06-18 19:25:32 +08:00
2020-02-27 21:47:36 +08:00
class Ans(StdAns):
2020-06-18 19:25:32 +08:00
NotAllowGroup = [204097403]
def CheckPermission(self):
if self.gid not in self.NotAllowGroup:
return -1
2020-02-27 21:47:36 +08:00
def GETMSG(self):
if self.parms:
return '咱也不知道' + self.parms[0] + '是啥呢~'
else:
2020-06-18 19:25:32 +08:00
return '汝再调戏咱,咱可就生气了!!'