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 <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[] = |
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 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() |
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
| #!/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 |