ok, here You will need to make a serverCmd then add it to the login button.
function servercmdBreakLaw(%obj)
{
if(%obj.player.isLawBreaker $= 0)
{
%obj.player.dems-=1000;
%obj.player.isLawBreaker=1;
messageClient(%obj, '', "\c3You have a license to break the law!");
}
else
{
messageClient(%obj, '', "\c3You can not have more then one license!");
}
}
You will need to make a command to give the player
%obj.player.isLawBreaker=0; when they login.