Skip to content

Instantly share code, notes, and snippets.

View womblee's full-sized avatar
🐫
I may be slow to respond.

nloginov womblee

🐫
I may be slow to respond.
View GitHub Profile
@womblee
womblee / colors.java
Created October 7, 2021 15:03 — forked from Asher-/colors.java
Colors by Joe
/*
class: Color
type: enum
description: Encapsulates an abstract color. Contains a large list
of different colors which can be accessed like:
Color.Russet
@womblee
womblee / bf4_offsets.txt
Last active November 3, 2021 23:24
BF4 Offsets (04.11.2021)
OFFSET_DXRENDERER : 0x142738080
OFFSET_GAMERENDERER : 0x142672378
OFFSET_ANGLES : 0x1423b2ec0
OFFSET_MAIN : 0x142364b78
OFFSET_WORLDRENDERSETTINGS : 0x1426724a0
OFFSET_BORDERINPUTNODE : 0x142671fb0
OFFSET_WEAPON : 0x0
OFFSET_SOLDIER_JD62 : 0x142679340
OFFSET_DXDISPLAYSETTINGS : 0x142364c70
OFFSET_FLAG : 0x142385a98
@womblee
womblee / gist:11b38c9c349407cb04eaa9cf9ce6990b
Created January 15, 2024 22:31
Prototype of disabling everything that was installed ACTUALLY BY MY DL MOD DOWNLOADER
for (auto const& it : ini)
{
// mINI has everything in lowercase, first tried CustomPak, wasted my time...
if (it.first == "custompak")
{
//;[DONT_EDIT_THIS_LINE]satan_reborn.pak=1,colorful_night_stars.pak=1
// Prime example of what we will try to parse
// Create a file dummy
std::ifstream file(dide_direct);