So, I’ve been messing around with this little project, right? It’s an Apex Legends character randomizer. You know, for those times when you just can’t decide who to play.
First, I started by jotting down all the legends. There are, like, a ton of them now! We’ve got the classics like Wraith, Pathfinder, and Lifeline, but then there’s all the newer ones like Octane, Caustic, and that crazy lady, Mad Maggie. There are more than 25, so I know it took me a while.

Then I thought, “Okay, how do I make this thing actually pick one randomly?” I decided to keep it super simple. No fancy graphics or anything, just a basic list. I used a random number generator, you know, the kind you find in pretty much any programming language. Nothing fancy there.
- I made a list of all the legends’ names.
- I assigned each one a number, like 1 for Wraith, 2 for Pathfinder, and so on.
- Then I set up the random number generator to pick a number within the range of the total number of legends.
Once the random number was picked, I just matched it back to the legend with the corresponding number. Boom! Random legend selected.
I tested it out a bunch of times, and it seemed to be working pretty well. It was spitting out different legends each time, which is exactly what I wanted. I’m not sure, I may do some more testing just to make sure it’s all good.
Honestly, the whole thing was way easier than I expected. It’s not the most complicated thing in the world, but it gets the job done. Now, whenever I’m feeling indecisive about my Apex pick, I just fire up my little randomizer and let it do its thing.
So yeah, that’s pretty much it. Just a simple little tool to help with those tough legend choices. I think it’s a pretty neat little project. It’s not gonna win any awards or anything, but it’s something I made, and it’s actually useful to me. I guess that’s all that really matters, right?