Im not sure if ubercms filters all posts by default but if not then you might want to filter them...
in insert.php
PHP Code:
$sql="INSERT INTO bots (room_id, id, name, motto, look , x , y , z , rotation , walk_mode)
VALUES
('$_POST[room_id]','$_POST[id]','$_POST[name]','$_POST[motto]','$_POST[look]','$_POST[x]','$_POST[y]','$_POST[z]','$_POST[rotation]','$_POST[walk_mode]')";
in insertresponce.php
PHP Code:
$sql="INSERT INTO bots_responces (id, bot_id, keywords, response_text, mode , serve_id)
VALUES
('$_POST[id]','$_POST[bot_id]','$_POST[keywords]','$_POST[response_text]','$_POST[mode]','$_POST[serve_id]')";
in insertspeech.php
PHP Code:
$sql="INSERT INTO bots_speech (bot_id, text, shout)
VALUES
('$_POST[bot_id]','$_POST[text]','$_POST[shout]')";