Welcome to Metin2Resources

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

[C++/Py] Game Options Elveron

JIGSAW

Be the best, Ignore the rest.
Staff member
Administrator
Joined
Jul 14, 2025
Messages
91
Reaction score
208
Points
33
Discord
jigsaw86
New settings / config system - Elveron design. You can combine all settings here (Game Options + System Options)
pDscZU1.png

Easy to manage categories, you just need to add it just like this:
Code:
option_data = [
    {
        "category": "Performance", # AdvancedGameOptions_0.py
        "subcategories": []
    },
    {
        "category": "Interface", # AdvancedGameOptions_1.py
        "subcategories": []
    },
    {
        "category": "Game", # AdvancedGameOptions_2.py
        "subcategories": []
    },
    {
        "category": "Environment", # AdvancedGameOptions_3.py
        "subcategories": []
    },
    {
        "category": "Sound", # AdvancedGameOptions_4.py
        "subcategories": []
    }
]
After that, you just create a py file in uiscript/advanced_game_options and name it advancedgameoptions_<category index>.py
The last step would be to add an icon for the category in ui/game/advanced_game_options/category_icons/

The subcategories are automatically generated from the category UIScript file.

Download:
 
New settings / config system - Elveron design. You can combine all settings here (Game Options + System Options)
pDscZU1.png

Easy to manage categories, you just need to add it just like this:
Code:
option_data = [
    {
        "category": "Performance", # AdvancedGameOptions_0.py
        "subcategories": []
    },
    {
        "category": "Interface", # AdvancedGameOptions_1.py
        "subcategories": []
    },
    {
        "category": "Game", # AdvancedGameOptions_2.py
        "subcategories": []
    },
    {
        "category": "Environment", # AdvancedGameOptions_3.py
        "subcategories": []
    },
    {
        "category": "Sound", # AdvancedGameOptions_4.py
        "subcategories": []
    }
]
After that, you just create a py file in uiscript/advanced_game_options and name it advancedgameoptions_<category index>.py
The last step would be to add an icon for the category in ui/game/advanced_game_options/category_icons/

The subcategories are automatically generated from the category UIScript file.

Download: *** Hidden text: cannot be quoted. ***
[/REPLYANDTHANKS]
ty
 

Latest posts

355Threads
747Messages
154Members
centarusLatest member
Back
Top