-
Who's Online 3 Members, 1 Anonymous, 351 Guests (See full list)
-
Topics
-
Posts
-
It's available : https://gitlab.com/4trik/ModernGUI . Since I've introduced a some of new things, and the mod is pretty fat with so many options, It's in bug discovery phase right now (I don't know of any bugs nor any been reported at this time). I'll make a post when I'll have more confidence. If you do try it and find anything you can report it to me.
-
I assume a lot more work still to go to make ModernGUI 28 compatible? Absolutely feel naked playing w/o it
-
Not sure if this is known but getting a strange text in a discord embed of the game website. Why does it say "gerbilOFdoom" in the corner? Also idk how website embeds like this work but it should probably give a bit more relevant info. Like the current release version, and maybe a nice screenshot along with the game description.
-
I salvaged some of autociv into ModernGUI, I can help with some of the fixes I covered doing so: Fix for the option page, just return a promise in init autociv_patchApplyN("init", function (target, that, args) { const promise = target.apply(that, args); [...] return promise; Same for lobby autociv_patchApplyN("init", function (target, that, args) { autociv_InitBots(); // Call everything that isn't sensible to the page being fully init here const result = target.apply(that, args); return Promise.resolve(result).then(resolvedValue => { // Call everything that is sensible to the page being fully init here autociv_focus.chatInput(); g_LobbyHandler.lobbyPage.autocivLobbyStats = new AutocivLobbyStats(); initChatFilterInput(); return resolvedValue; });
