- Excalibur: Furious Javelin
- Trinity: Vampire Leech
- Ember: Exothermic
- Loki: Hushed Invisibility
- Mag: Fracturing Crush
- Rhino: Ironclad Charge
- Ash: Seeking Shuriken
- Frost: Chilling Globe
- Nyx: Assimilate
- Saryn: Venom Dose
This file contains 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
1/28 = 101,250 bucks & 54,000 xp | |
1/27 = 93,150 bucks & 49,680 xp | |
1/26 = 93,150 bucks & 49,680 xp | |
1/25 = 93,150 bucks & 49,680 xp | |
1/24 = 93,150 bucks & 49,680 xp | |
1/23 = 93,150 bucks & 49,680 xp | |
1/22 = 85,050 bucks & 45,359 xp | |
1/21 = 85,050 bucks & 45,359 xp | |
1/20 = 85,050 bucks & 45,359 xp | |
1/19 = 85,050 bucks & 45,359 xp |
This file contains 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
/* No Avatar Decorations */ | |
[class^='avatarDecoration_'] | |
{ | |
display: none; | |
} | |
/* No Activity Cards */ | |
[aria-label="Members"] > h3:has(svg), |
This file contains 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
function pack_u64_dyn(v) | |
local out = {} | |
for i = 1, 8 do | |
local cur = v & 0x7f | |
v = v >> 7 | |
if v ~= 0 then | |
out[#out + 1] = string.char(cur | 0x80) | |
else | |
out[#out + 1] = string.char(cur) | |
return table.concat(out) |
This file contains 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
Show hidden characters
{ | |
"cmd": "sun", | |
"selector": "source.c++" | |
} |
This file contains 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
#include <iostream> | |
#include <base.hpp> | |
#include <Buffer.hpp> | |
#include <hwHid.hpp> | |
#include <string.hpp> | |
#include <wooting_enums.hpp> | |
enum class WootingKeys : uint8_t | |
{ |
This file contains 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
util.require_natives("2944b") | |
local cur_note = nil | |
util.create_tick_handler(function() | |
PAD.DISABLE_CONTROL_ACTION(0, 0, true) -- Disable INPUT_NEXT_CAMERA (V) | |
PAD.DISABLE_CONTROL_ACTION(0, 79, true) -- Disable INPUT_VEH_LOOK_BEHIND (C) | |
local note = nil | |
if util.is_key_down('Z') then -- C4 | |
note = 16 |
To explore and edit RPF files, you can use any of these:
- https://openiv.com/
- https://www.gta5-mods.com/tools/codewalker-gtav-interactive-3d-map (Tools > RPF Explorer)
This file contains 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
button[class^='welcomeCTAButtonOuter-'] | |
{ | |
display: none; | |
} |
NewerOlder