<?php
/*** Freedom City | Check RPGBUNNY.COM for more Full RPG Sources | www.rpgbunny.com ***/include "antet.php"; include "func.php";
if (isset($_SESSION["user"][0], $_GET["id"]))
{
$town=town($_GET["id"]);
if (!$town[1])
{
aquire($_GET["id"], $_SESSION["user"][0]);
header('Location: towns.php');
}
else msg($lang['townBelongs']);
}
else msg($lang['incorData']);
?>