Skip to content

Instantly share code, notes, and snippets.

#include <sourcemod>
#include <sdktools>
#include <dhooks>
/*
Signature for _ZN13BaseMenuStyle16ClientPressedKeyEij:
55 89 E5 53 57 56 81 EC 7C 04 00 00
\x55\x89\xE5\x53\x57\x56\x81\xEC\x7C\x04\x00\x00
*/
int BaseMenuStyle_ClientPressedKey_Sig_Lin[] =
@The-Doggy
The-Doggy / me-test.lua
Last active June 19, 2022 13:14
computercraft me script
local args = {...}
-- This method exists to connect a peripheral easier
function wrapPs(peripheralName)
periTab={}
sideTab={}
if peripheralName==nil then
print("Error")
end
local peripherals = peripheral.getNames()
@The-Doggy
The-Doggy / merge.sh
Created April 27, 2020 11:04 — forked from lxhunter/merge.sh
Automated merging of branches into master for travis-ci or any other ci
#!/bin/bash
git config --global user.email 'travis@travis-ci.org'
git config --global user.name 'Travis'
git remote set-branches --add origin master
git fetch
git reset --hard
git checkout master
git merge --ff-only "$TRAVIS_COMMIT"
git push git+ssh://git@github.com/${TRAVIS_REPO_SLUG}.git master