Warning: session_start(): open(/var/lib/php/sessions/sess_o04c2e2dmpp2dq7hn1shspeke3, 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
static S simpleChatPost(S user, S text) {
O chat = simpleChatBot();
if (chat == null)
ret loadPage("http://ai1.lol/" + simpleChatID() + "/raw?robo=1&user=" + urlencode(user) + "&text=" + urlencode(text));
else
ret (S) call(chat, "postForeign", mc(), programID(), user, text);
}
static S simpleChatPost(S text) {
L names = cast get(mc(), "simpleChatPresence_names");
S name;
if (l(names) == 1)
name = first(names);
else
name = programID();
ret simpleChatPost(name, text);
}