- Assassin Sovereignless Soul
- Camera 8 Mouse Sens 0
- Switch Spells -> N
- Attack (Left) -> B
- Strong attack (Left) -> M
- Pre-press B, press BNM at the same time
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
// For 1.27.02 | |
state("nioh2") { | |
int on_worldmap: 0x27E0F84; | |
int in_mission: 0x2B04060; | |
} | |
isLoading { | |
return (current.on_worldmap == 0) && (current.in_mission == 0); | |
} |
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
<?php | |
$dati = [ | |
[ | |
'name' => 'Tizio', | |
'id' => 1, | |
'parent' => null | |
], | |
[ | |
'name' => 'Caio', | |
'id' => 2, |
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
from time import perf_counter | |
class PerfTimer: | |
def __init__(self): | |
self.entries = [] | |
self.last = None | |
def section(self, name): | |
clk = self.stop() | |
self.last = (name, clk) | |
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
LPVOID swapchain_present_vtable_lookup() { | |
// Credits: https://www.unknowncheats.me/forum/d3d-tutorials-and-source/88369-universal-d3d11-hook.html | |
D3D_FEATURE_LEVEL featureLevel = D3D_FEATURE_LEVEL_11_0; | |
ID3D11Device *pDevice = nullptr; | |
ID3D11DeviceContext *pContext = nullptr; | |
IDXGISwapChain* pSwapChain = nullptr; | |
DXGI_SWAP_CHAIN_DESC swapChainDesc; | |
ZeroMemory(&swapChainDesc, sizeof(swapChainDesc)); | |
swapChainDesc.BufferCount = 1; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import pandas as pd | |
pd.read_csv('ok.csv', header=[0, 1], index_col=0) | |
pd.read_csv('not_ok.csv', header=[0, 1], index_col=0) |
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
import sys | |
import time | |
import tqdm | |
import cbpro | |
import pandas as pd | |
if __name__ == '__main__': | |
if len(sys.argv) < 3: | |
print(f'Usage: {sys.argv[0]} start_date end_date') | |
exit() |
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
state("Risen") { | |
float igt : "Game.dll", 0x00FA63A0, 0x48, 0x24 | |
} | |
init { | |
vars.igt = 0.0f; | |
} | |
startup { | |
} |
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
import time | |
import requests | |
import win10toast | |
import threading | |
import datetime | |
from colorama import * | |
class GdaxWatcher: | |
def __init__(self, notifBelow, notifAbove): | |
self.toaster = win10toast.ToastNotifier() |
NewerOlder