Warning: session_start(): open(/var/lib/php/sessions/sess_dmdvujs7i1sie9bvpamuqkmra1, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
static long timeout = 5000;
static int maxEntries = 10;
static AutoComboBox3 box;
p-noconsole {
autoRestart();
smartBot_autoComplete_defaultMaxEntries = maxEntries;
smartBot_autoComplete_defaultHardTimeout = timeout;
box = autoComboBox3(f smartBot_autoComplete);
centerComboBox(box);
setFontSize(box, 20);
setComboBoxListFontSize(box, 20);
onEnter(box,
r { openPlatformBrowser(smartBot_topicLink(getText(box))) });
setY(200, showFrameFlat_minWidth(500,
vstack(box, hcenteredline(
jbutton("Send in Stefan's Chat", r {
infoBox(postToStefansChat(input()) ? "OK" : "!*&$")
}),
jbutton("Send in Smart Bot's Chat", r {
infoBox(postToSmartBotsChat(input()) ? "OK" : "!*&$")
})))));
}
sS input() { ret getText(box); }