This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## if using, make sure all shaders are available - the names are based on the ones uosc comes with | |
| ###### Performance | |
| profile=high-quality | |
| hwdec=auto-copy | |
| vo=gpu-next | |
| fbo-format=auto | |
| gpu-api=d3d11 # vulkan on linux | |
| vd-lavc-dr=yes | |
| hwdec-codecs=all | |
| d3d11-adapter= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Display style of current position. available: line, bar | |
| timeline_style=bar | |
| # Line display style config | |
| timeline_line_width=2 | |
| # Timeline size when fully expanded, in pixels, 0 to disable | |
| timeline_size=10 | |
| # Comma separated states when element should always be fully visible. | |
| # Available: paused, audio, image, video, idle, windowed, fullscreen | |
| timeline_persistency=paused | |
| # Top border of background color to help visually separate timeline from video |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| /* Changes the font in codeblocks to the one used in Visual Studio Code because I like that better */ | |
| --font-code: "Consolas"; | |
| } | |
| /* Hides the sticker button on the message bar */ | |
| div[aria-label*="gift"] { | |
| display: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Originally made by Junior_Djjr - https://www.mixmods.com.br/2019/07/reload-mod.html | |
| // Fixed by GillianMC - https://gist.github.com/SandeMC/4c6d52a05f71af24702eaa28f6b692cf | |
| CONST_INT OFFSET_PED_ACTIVE_WEAPON_SLOT 0x718 | |
| CONST_INT OFFSET_PED_WEAPONS 0x5A0 | |
| CONST_INT SIZEOF_CWEAPON 0x1C | |
| CONST_INT OFFSET_WEAPON_STATE 0x04 | |
| CONST_INT OFFSET_WEAPON_AMMO_CLIP 0x08 | |
| CONST_INT OFFSET_WEAPON_TOTAL_AMMO 0x0C | |
| CONST_INT OFFSET_WEAPON_SHOT_TIMER 0x10 |