コード例 #1
0
 def args(cls, player):
     return pyp.Word(pyp.alphas + ".")("type") + parser.Text("name")
コード例 #2
0
 def args(cls, player):
     return parser.Text("text")
コード例 #3
0
 def args(cls, player):
     return parser.PlayerName()("target") + parser.Text("message")
コード例 #4
0
 def args(cls, player):
     return parser.Text("message")
コード例 #5
0
 def args(cls, player):
     return pyp.Optional(
         parser.OneOf(channels.all())("channel").setName("channel") +
         pyp.Optional(parser.Text("text")))