Quote:
Originally Posted by Vlad1
one glitch within your house script is if a player is in jail they can enter their house and exit their house and easily get out of jail
|
That's not really a glitch, more a custom condition that you need to script into it yourself.
A generic check like this could be added to prevent warping:
PHP Code:
temp.lvls = serveroptions.jaillevels.tokenize(",");
if (player.level.name in temp.lvls) {
player.chat = "You are stuck in jail! red dragons";
return;
}