DiscordPHP icon indicating copy to clipboard operation
DiscordPHP copied to clipboard

How to use Message Create Collector ?

Open anggi117 opened this issue 2 years ago • 0 comments

Hii i have some question for this Message Create Collector

This my code :

$message->channel->createMessageCollector(fn ($message) => strpos($message->content, 'hello') !== false, [
    'time' => 1500,
])->done(function (Collection $messages) {
    foreach ($messages as $message) {
        var_dump($message);
    }
});

i using time for 1,5 second, but var_dump not respond anything. and if im using limit 1 the createMessageCollector will respond after im typing 2 "hello" even though i set that limit on 1

is there any answer and solutions for me ?

anggi117 avatar Mar 30 '22 03:03 anggi117