/** * Check if the player is created. Return false on success and string on error. * @deprecated * @param SR_Player $player * @return false|string */ protected static function checkCreated(SR_Player $player) { if ($player->isCreated()) { return true; } $player->msg('0000'); return false; // $c = Shadowrun4::SR_SHORTCUT; // return 'You did not start the game yet. Type '.$c.'start <race> <gender> to start your journey in Shadowlamb.'; }