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
class bindKey { | |
IntList keylist; | |
public bindKey() { | |
keylist = new IntList(); | |
} | |
public void pressKey(int key) { | |
if (!keylist.hasValue(key)) keylist.append(key); | |
} | |
public void releaseKey(int key) { | |
if (keylist.hasValue(key)) { |
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
<? | |
if (isset($_GET["udid"])) exit($_GET["udid"]); | |
elseif (isset($_GET["grab"])) exit(header("Location: ". $_SERVER["PATH_INFO"] . "?udid=" . substr(strstr(strstr($HTTP_RAW_POST_DATA, '</dict>', true),"<string>"),8,40), true, 301)); | |
header('Content-type: application/x-apple-aspen-config; chatset=utf-8'); | |
echo('<?xml version="1.0" encoding="UTF-8"?>'); | |
?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> |
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
<?php | |
/* | |
__PocketMine Plugin__ | |
name=AddPlayer | |
description=Add a player to the game | |
version=0.1 | |
author=Falk | |
class=addP | |
apiversion=12,13 | |
*/ |
NewerOlder