// check if banned
if( banned == AL_BANNED )
{
// code here if the player is banned
// check the database if user is banned (flag)
return;
}
else
{
banned = AL_NORMAL;
// update the database account can now login (flag)
}
