How would I go about doing this. I tried doing this -
and
But, it doesn't work. I think one reason might be is because I'm not supposed to say '$game_system.switches'
Code:
when 1 # skill
if $game_system.switches[1] = false
# Play buzzer SE
$game_system.se_play($data_system.buzzer_se)
return
end
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Make status window active
@command_window.active = false
@status_window.active = true
@status_window.index = 0
and
Code:
if $game_system.switches[1] = false
# Disable skill
@command_window.disable_item(1)
end
But, it doesn't work. I think one reason might be is because I'm not supposed to say '$game_system.switches'