There’s been lots of updates to the layout and styling, as well as a dark theme! And we’ve also got it redirecting to a cleaner domain name now. randomizers.debigare.com
I would suggest against GMDX for a first time playthrough, it changes A LOT. From the aesthetics, to the gameplay, to the sounds, the mood, the feel of the game, and the viable approaches in each level, there’s so much that’s changed it just isn’t the same game anymore.
You’re much better off with the Vanilla Fixer tool, Transcended, or Zero Rando (I’m the dev). You could also use Revision and toggle every setting to vanilla, but make sure you also disable the HDTP models, and disable Shifter and Biomod too, and definitely set the maps to vanilla.
I agree about some gimmicks like 2 players 1 controller, or playing games with a dance pad or whatever, they seem difficult but still feel like gimmicks to me
4-way races are ok if you’re familiar with the game and speedrun already, but otherwise hard to watch
And dogs, rats, greasels, karkians, and fish if you’re standing (the game doesn’t have a use animation while swimming), and grays too but you’ll take damage when you do it
Thanks! Yea everything shown in that trailer is in UnrealScript aside from the creation of the mirrored map files, and the installer obviously, both of those were done in Python. The death markers and other online features (which are all optional and opt-in, disabled by default) use a TCP connection in the game written in UnrealScript to make HTTP requests, the backend is a Python Flask server. We even wrote our own JSON parser inside of UnrealScript (it’s not perfect but it does enough for us). Technically it’s possible to add a DLL module to the game for stuff like JSON parsing but we haven’t needed to, and technically this keeps it more easily portable (like if SurrealEngine even gets to a more completed state).
We had to write our own PRNG function to work inside UnrealScript, because the provided one doesn’t allow seeding.