Skip to content

Instantly share code, notes, and snippets.

View mrzarkovic's full-sized avatar
🌴
On vacation

Milos Zarkovic mrzarkovic

🌴
On vacation
View GitHub Profile
// A port of Source Engine / Quake Movement to Unity
// Made by CoolOppo
using System;
using UnityEditor.ShaderGraph;
using UnityEngine;
using UnityStandardAssets.CrossPlatformInput;
using UnityStandardAssets.Utility;
using Random = UnityEngine.Random;
@jonpulsifer
jonpulsifer / toggle-virtualization.bat
Last active June 17, 2024 17:30
Virtualization must be disabled to use CS:GO anti-cheat clients like FACEIT and ESEA, but I like to use WSL2 and Docker, and this script helps me do that
@echo off
echo Virtualization must be disabled to use anti-cheat clients like FACEIT and ESEA
echo.
net session >nul 2>&1
if %ERRORLEVEL% EQU 0 goto :chchchchoices
echo This script requires elevated privileges. Re-run as Administrator to continue
goto :exit
:chchchchoices