Skip to content

Instantly share code, notes, and snippets.

View kevinvanrijn's full-sized avatar
🔌
Offline

Kevin van Rijn kevinvanrijn

🔌
Offline
View GitHub Profile
@kevinvanrijn
kevinvanrijn / Vaccinator No-Wait
Created January 25, 2016 10:09 — forked from kbrougham/Vaccinator No-Wait
Vaccinator No-Wait Specific Toggle Script
//The gist of this script is: we have three states. Bullet selected, explosive selected, and fire selected.
//When bullet is selected, we make the 'go to bullet' button do nothing, whereas the other two advance one, and update their current state.
//This way, you can continually hit a key, which will advance state, until you hit your current desired state, and it will stop advancing.
//We always start on spawn with bullet, so we set bullet blank, as to not change resist type
alias +go_to_bullet;
alias -go_to_bullet "-reload";
//Since we start on bullet, going to explosive is one use
alias +go_to_explosive "bullet_to_explosive";
@kevinvanrijn
kevinvanrijn / composer.bat
Created June 30, 2017 08:03 — forked from mosbth/composer.bat
To make composer (phpunit) run globally in windows.
@ECHO OFF
REM Save this file in the same directory as you phar-file.
REM For composer.phar, save this file as composer.bat
REM For phpunit.phar, save this file as phpunit.bat
REM
REM Read how the filename is created:
REM https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx?mfr=true
REM
REM php "%~dp0composer.phar" %*
php "%~dp0%~n0.phar" %*