This remix is made for captaincode11; I was just improving his scripts he made for a game. :) If any of you need help with something, please let me know! Thanks! :D
Here's what I fixed, and tips I could give you for your future games: Fix #1. In your scripts, I noticed that you kept putting a bunch of repeat blocks set to "repeat 1." You do not need a repeat block with the variable "1" in it, since it is not repeating anything else again. I simply deleted these, and already our scripts are looking much better! :) Fix #2. For comparing fractions, your original script only allowed answers to be <, >, or =. I have changed this easily. Rather than throwing in a bunch of "If, then" blocks, we can simply use the "If, else" block. This block detects if something (such as a variable) can equal a certain number, letter, or position. In the lower half, it tells us if anything does not equal the given value, it just simply will ignore the "If, then" code, and immediately follow the code written in the "Else" section of the block. This can be very useful in many games, rather than writing a bunch of "If, then" scripts. These are most of the things I changed; I also renamed some stuff, and that's pretty much it for this project! I hope you take this into consideration, and use these wonderful, useful tips for your future games! Bye! :D