Botman typesAndWaits增加了初始延迟

时间:2018-06-14 07:21:59

标签: chatbot

当我使用typesAndWaits方法延迟2秒时,我必须等待2秒才能输入指示符显示,当显示时我需要等待另外2秒才能显示消息。 我正在使用BotMan聊天机器人服务。

这是我的代码:

$botman->hears('test', function (BotMan $bot) {
    $bot->typesAndWaits(2);
    $bot->reply('Prvo upiši svoje ime i prezime, i pritisnite SEND');
}

1 个答案:

答案 0 :(得分:2)

在BotMan.php文件中,转到第583行并替换

sleep($seconds);

使用

usleep($seconds * 1000000);

应该可以正常工作......