Skip to content

Instantly share code, notes, and snippets.

View veteran29's full-sized avatar
🥔
💥

Filip Maciejewski veteran29

🥔
💥
View GitHub Profile
@echo off
rem the name of the script is drive path name of the Parameter %0
rem (= the batch file) but with the extension ".ps1"
set PSScript=%~dpn0.ps1
set args=%1
:More
shift
if '%1'=='' goto Done
set args=%args%, %1
goto More
@veteran29
veteran29 / unconscious.c
Last active April 26, 2024 17:26
Arma Reforger Stuff
auto unit = GetGame().GetWorld().FindEntityByName("bob");
CharacterControllerComponent.Cast(unit.FindComponent(CharacterControllerComponent)).SetUnconscious(true);