<?php
session_start();
if($_SESSION['logged'] == 'true'){
$q = mysql_query("SELECT * FROM player_creatures WHERE user_id = '".$_SESSION["id"]."'");
if (mysql_num_rows($q) == 0) {
echo '<script>alert("Welcome, first create a character!");</script>';
echo '<script>document.location.href="?p=create"</script>';
} else {
require_once("class/raid_class.php");
$r = new Raid;
if (isset($_GET["p"])) {
$r->Intro();
}
}
} else {
header("Location: index.php");
}
?>