3.2.8. Blizz-ABS Controls Manipulation
If you need to disable Blizz-ABS controls during the game for some special occasions, you can call an event Call Script command and use following syntax to change this value even during the game:
$game_system.blizzabs = POSSIBLE_VALUE
POSSIBLE_VALUE is either true, false or nil. This command will completely override Disable ABS. If you set it to true, Blizz-ABS controls will be available whatever occasion might be (i.e. during the execution of an event). If you set this option to false Blizz-ABS controls will be disabled whatever occasion might be (i.e. a map full of enemies). If you set it to nil, the Blizz-ABS itself will take over the availability of the controls again. This option is initially nil. You can also disable only specific buttons. Use an event Call Script command and use following syntax to change the availability of one of the buttons during the game:
$game_system.attack_button = POSSIBLE_VALUE
$game_system.defend_button = POSSIBLE_VALUE
$game_system.skill_button = POSSIBLE_VALUE
$game_system.item_button = POSSIBLE_VALUE
$game_system.select_button = POSSIBLE_VALUE
$game_system.hud_button = POSSIBLE_VALUE
$game_system.hotkey_button = POSSIBLE_VALUE
$game_system.minimap_button = POSSIBLE_VALUE
$game_system.turn_button = POSSIBLE_VALUE
$game_system.running_button = POSSIBLE_VALUE
$game_system.sneaking_button = POSSIBLE_VALUE
$game_system.jumping_button = POSSIBLE_VALUE
POSSIBLE_VALUE is either true or false. If you don't use running, sneaking or jumping, it is recommended that you don't ever turn those buttons on. If the skill and/or item button is disabled and the Direct Hotkeys option is being used, skills and/or items will not be activated when pressing a number key.