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
-- Author: azzen <contact@azzen.dev> | |
-- Creation date: 2022-09-09 | |
require("keystroke") | |
if (not isfunction(SimulateKeyStroke) or not isfunction(SimulateBackspace)) then | |
print("[stweaks.azzen.dev::history] » keystroke module must be installed to work!") | |
return | |
end | |
local history = {} |
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
set title | |
set hidden | |
set expandtab | |
set shiftwidth=4 | |
set tabstop=4 | |
set number | |
set relativenumber | |
filetype plugin indent on | |
syntax on | |
set t_Co=256 |
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
#include <stdio.h> | |
#include <windows.h> | |
#define COLOR_TO_SEARCH RGB(21, 139, 227) | |
#define SLEEP_TIME 10000 | |
void Click(void); | |
int main(int argc, char** argv) { | |
COLORREF color_to_search = COLOR_TO_SEARCH; |
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
local bytecodes = {} | |
local BC, run_function = {} | |
local VARG_CONST = {} | |
local lujlu_mt_funcs | |
local lujlu_cache = setmetatable({}, {__mode = "k"}) | |
local lujlu_identifier_mt = { | |
__tostring = function(self) | |
return tostring(lujlu_cache[self].data) | |
end, |
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
Marga Rita | |
Margot Faste | |
Jeremy Moncask | |
Oussama Lairbon | |
Gerard Menfaim | |
Dorian Namarre | |
Germain Tenant | |
Germain Baladeuse | |
Humphrey Bienfufé | |
Abdou Ceur |
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
# author: azzen <github.com/azzen> | |
# date: 2021/08/16 16:00 | |
# split content into multiple directories | |
# usage: split.py <directory to split> | |
import os | |
import sys | |
import shutil | |
walk_dir = sys.argv[1] |
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 SERVER then return false end | |
CreateClientConVar("azzen_visualassistant", 0, true, false) | |
CreateClientConVar("azzen_visualassistant_radius", 750) | |
local radius = GetConVarNumber("azzen_visualassistant_radius") | |
cvars.AddChangeCallback("azzen_visualassistant_radius", function() | |
radius = GetConVarNumber("azzen_visualassistant_radius") | |
end) |
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
# Flea props creation script | |
# Author: Azzen <github.com/azzen> | |
# Date 2020-07-12 12:22:18 | |
# Purpose: Create a json file for the flea | |
Param($model, $name, $price="50", $health="50", $desc="Placeholder") | |
$mdlName = [System.IO.Path]::GetFileNameWithoutExtension($model) | |
$struct = @{ | |
Identifier = $mdlName.ToUpper(); |
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
# FastDL Builder Script | |
# Author: Azzen <github.com/azzen> | |
# Date 2020-07-12 13:50:06 | |
# Purpose: compresses a directory recursively | |
# using bzip2 and creates a lua download enforcer | |
# Dependencies : 7zip | |
$files = Get-ChildItem -Path .\ -Recurse -File -Name -Exclude "*.lua", "*.ps1", "*.bz2" | |
$outPath = ".\compressed" |
NewerOlder