Skip to content

Instantly share code, notes, and snippets.

v13 = CUtlBuffer::GetUint64(&bufIn);
v15 = v13;
LOBYTE(v13) = (HIDWORD(v13) >> 16) & 0xF0;
if ( !(_BYTE)v13 || ((HIDWORD(v13) >> 20) & 0xF) > 0xA || (unsigned __int8)(BYTE7(v13) - 1) > 3u )
goto LABEL_22;
if ( (_BYTE)v13 == 16 )
{
if ( !(_DWORD)v15 || (HIDWORD(v15) & 0xFFFFFu) > 4 )
goto LABEL_22;
}
TF: \x55\x8B\xEC\x83\xEC\x20\x8D\x45\xE0\x57
CSS: 55 8B EC 53 FF 15 ?? ?? ?? ?? 8B D0 BB ? ? ? ? 3B 15 ? ? ? ? 74 ? 8B CA 33 C0 F0 0F B1 0B 85 C0 74 ? F3 90 6A 00 52 8B CB FF 15 ? ? ? ? EB ? FF 05 ? ? ? ? 0F B7 05 ? ? ? ? 57
CSGO: \x55\x8B\xEC\x83\xEC\x08\x56\x57\x8B\xFA\x89\x4D\xFC
@asherkin
asherkin / print.sp
Last active January 11, 2016 12:08
public void OnPluginStart() {
PrintToServer(">>> ☐ ☑ ☒ ✓ ✔ ✗ ✘ ○ ● ◯");
for (int i = 0; i < 256; i += 16)
PrintToServer(">>> %c %c %c %c %c %c %c %c %c %c %c %c %c %c %c %c", i, i+1, i+2, i+3, i+4, i+5, i+6, i+7, i+8, i+9, i+10, i+11, i+12, i+13, i+14, i+15);
}
@asherkin
asherkin / config.json
Created December 7, 2015 11:07 — forked from anonymous/config.json
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",

Keybase proof

I hereby claim:

  • I am asherkin on github.
  • I am asherkin (https://keybase.io/asherkin) on keybase.
  • I have a public key whose fingerprint is 28AC 26F8 F0D1 855B C820 08E7 8DEC 8D93 ED49 26AD

To claim this, I am signing this object:

#include <sourcemod>
#pragma semicolon 1
#pragma newdecls required
methodmap Foo {
public Foo() {
return view_as<Foo>(new StringMap());
}
#include <sourcemod>
#pragma semicolon 1
#pragma newdecls required
public Plugin myinfo = {
name = "Temporary Donor Access",
author = "Asher \"asherkin\" Baker",
description = "Provides commands to manage temporary donor access",
version = "0.1.0",
@asherkin
asherkin / irc.sp
Last active August 29, 2015 14:21
#include <conplex>
#pragma semicolon 1
#pragma newdecls required
#define MSG_PEEK 0x2
char serverhost[64] = "SRCDS";
char servertime[64] = "Unknown";
char serverversion[64] = "Unknown";
#pragma semicolon 1
// spshell crap
forward void main();
native void print(const char[] string);
native void printnums(...);
void int64tohex(char buffer[20], const int high, const int low)
{
static char table[] = "0123456789abcdef";
@asherkin
asherkin / index.html
Created July 24, 2014 20:06
Bootstrap + Fontawsome Skeleton
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">