DiscordPHP
DiscordPHP copied to clipboard
How to use Message Create Collector ?
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 ?