juggerburn
Junior Member
- May 21, 2009
- 113
- 11
so i signed up with imified which bascially lets you run a chat bot for popular instant messaging programs from your website.
here is the example they use slightly modified by me:
--------------------------------------------------------------
<?php
switch ($_REQUEST['step']) {
case 1:
echo "Hi, what's your name?";
break;
case 2:
echo "Hi " . $_REQUEST['value1'] . ", where do you live?";
break;
case 3:
echo "Well, welcome to this hello world bot.";
break;
}
?>
--------------------------------------------------------------
the problem with this is the responses come out right after i send a message, which makes it unrealistic. is there anyone here who knows how to code this so my bot delays it's response by say 10 seconds or so?
help would be greatly appreciated.
here is the example they use slightly modified by me:
--------------------------------------------------------------
<?php
switch ($_REQUEST['step']) {
case 1:
echo "Hi, what's your name?";
break;
case 2:
echo "Hi " . $_REQUEST['value1'] . ", where do you live?";
break;
case 3:
echo "Well, welcome to this hello world bot.";
break;
}
?>
--------------------------------------------------------------
the problem with this is the responses come out right after i send a message, which makes it unrealistic. is there anyone here who knows how to code this so my bot delays it's response by say 10 seconds or so?
help would be greatly appreciated.