+// private function tell($msg) {
+// // lookup dest
+// $this->insert(
+// 'INSERT INTO messages (message,type,room,source) VALUES(?,?,?,?)',
+// 'ssii', $msg, 'tell', $this->player->room, $this->player->id);
+// }
+
+ private function say($msg) {
+ $this->insert(
+ 'INSERT INTO messages (message,type,room,source) VALUES(?,?,?,?)',
+ 'ssii', $msg, 'say', $this->player->room, $this->player->id);
+ }
+
+ private function move() {
+ // ahhhhhhhhhhhhhhhhhhhh
+ }
+