- Joined
- Oct 17, 2012
- Messages
- 394
- Reaction score
- 98
- First Language
- Español
- Primarily Uses
- RMVXA
Hello, I have a trouble, I'm using Himework's script called "Choice options" (http://himeworks.com/2013/03/choice-options) and I'm trying to disable an option, well this happens:
The condition is if variable 47 is equal to 0, so I made this condition
disable_choice(1,"$game_variables[47] == 0")
It doesn't work, the choice is still usable if variable 47 is equal to 0
BUT If I use the same condition for hide_choice command, it DOES work
hide_choice(1,"$game_variables[47] == 0")
The choice one is hidden if the variable is equal to 0, but it's not disabled if I use the same condition for the disable_choice command
Any idea about what could be happening? Thanks
The condition is if variable 47 is equal to 0, so I made this condition
disable_choice(1,"$game_variables[47] == 0")
It doesn't work, the choice is still usable if variable 47 is equal to 0
BUT If I use the same condition for hide_choice command, it DOES work
hide_choice(1,"$game_variables[47] == 0")
The choice one is hidden if the variable is equal to 0, but it's not disabled if I use the same condition for the disable_choice command
Any idea about what could be happening? Thanks