Posts: 75
bb-16-ac@hotmail.co.uk
View Profile Personal Message (Offline)
Re: Stop Multiple Logins [$5]
« Reply #14 on: April 04, 2009, 01:57:12 AM »
Reply with quoteQuote
Hu? lol you can just add something like this on your pages...
if($ir['jail'] > 0)
{
echo 'While in jail you cant access this page.!';
$h->endpage();
exit;
}
if($ir['hospital'] > 0)
{
echo 'While in hospital you cant access this page.!';
$h->endpage();
exit;
}
Simple, gets the job done? lol
Have that on all pages. It doesn't seem to stop it when people are tabbed browsing. The only thing that seems to work is to force refresh, but that really ups bandwith, refreshing every 10 seconds or so.