- Joined
- Sep 30, 2023
- Messages
- 12
- Reaction score
- 4
- First Language
- Italian
- Primarily Uses
- RMMV
I just started using RPGM MV and i am trying to figure out if is better to simulate AND/OR with conditional branches or better to just script it performance wise, quick example i need to make a bingo, while extracting a number between 1 and 100 i need to never repeat an already extracted number, i could easily use variables to contain every previous extraction and compare all of them with every new extraction using that many IF to repeat it until a different number is extracted, but that seems to become a mess of too many IF when i need to do for example 50 extractions in a row, should i use as much as possible scripts and forget about simulating AND/OR with conditional branches or there is an actual merit on using them for maybe smaller scale comparisons?
Last edited: