16 lines
385 B
Python
16 lines
385 B
Python
from zzcore import StdAns
|
|
|
|
|
|
class Ans(StdAns):
|
|
NotAllowGroup = [204097403]
|
|
|
|
def CheckPermission(self):
|
|
if self.gid in self.NotAllowGroup:
|
|
return -1
|
|
return 0
|
|
|
|
def GETMSG(self):
|
|
if self.parms:
|
|
return '咱也不知道' + self.parms[0] + '是啥呢~'
|
|
else:
|
|
return '汝再调戏咱,咱可就生气了!!'
|