Random Cart loader
This cartridge loads a random numerical id cartridge of bbs. basically any cart on bbs thats cart id is a number.
Update 2.0 : Compress code + fix display bug
This is interesting. How does this work? Does it only load carts with numeric IDs?
You got it @ridgek ! it picks a random number and then does this: load(flr(abs("#"..id)
basically it joins # and id to make something like #-4192.5145, then it rounds it to make something like #-4193, then it removes the "-" to get #4193, then it loads it. the way load() works, if it cant load, the program continues, so it will just try again with a new random id.
@AntiBrain Thx for taking the time to respond! I forgot I can just click on the code button instead of asking dumb questions, lol!
[Please log in to post a comment]