Skip to main content

liteyuki.message.on

SnowyKamiLess than 1 minuteAPI

def on_message(rule: Rule, priority: int, block: bool) -> Matcher

源代码
def on_message(rule: Rule=empty_rule, priority: int=0, block: bool=False) -> Matcher:
    matcher = Matcher(rule, priority, block)
    for (i, m) in enumerate(_matcher_list):
        if m.priority < matcher.priority:
            _matcher_list.insert(i, matcher)
            break
    else:
        _matcher_list.append(matcher)
    return matcher

def on_keywords(keywords: list[str], rule: Any, priority: int, block: bool) -> Matcher

源代码
def on_keywords(keywords: list[str], rule=empty_rule, priority: int=0, block: bool=False) -> Matcher:

    @Rule
    async def on_keywords_rule(event: MessageEvent):
        return any((keyword in event.raw_message for keyword in keywords))
    return on_message(on_keywords_rule & rule, priority, block)

async def on_keywords_rule(event: MessageEvent) -> None

源代码
@Rule
async def on_keywords_rule(event: MessageEvent):
    return any((keyword in event.raw_message for keyword in keywords))

var current_priority = -1

var matcher = Matcher(rule, priority, block)

var current_priority = matcher.priority