Skip to content

Instantly share code, notes, and snippets.

View JABirchall's full-sized avatar
🤔
Still trying to figure out why github needs statuses

Jake Birchall JABirchall

🤔
Still trying to figure out why github needs statuses
  • England
View GitHub Profile
> DT_TestTraceline
-> m_clrRender [0x70]
-> m_vecOrigin [0x134]
-> m_angRotation[0] [0x128]
-> m_angRotation[1] [0x12c]
-> m_angRotation[2] [0x130]
-> moveparent [0x144]
> DT_TEWorldDecal
-> baseclass [0x0]
-> m_vecOrigin [0x10]
<?php
include('Socket/Server.php');
include('Socket/Client.php');
$address = "194.145.126.133";
$port = 1500;
$p = xml_parser_create();
$s = new Socket\Client($address,$port);
echo 'Writing to ',$address,':',$port,PHP_EOL;
<?php
/* Database Class */
class database {
/* Set Private Database info so only this class can connect to it */
private $hostname;
private $database;
private $username;
private $password;
/* Other Variables */
private $pdo;
<?php
if ($_GET['action'] == 'decode'){
echo hex2bin($_GET['loginid']);
} else if ($_GET['action'] == 'encode') {
echo bin2hex($_GET['loginid']);
} else {
echo 'Please choose decode or encode';
}
?>
<? for ($i=1; $i<=$pages; $i++) {
echo "<form action=\"index.php?page=".$i."\" method=\"POST\">
<input id=\"lord\" value=\"$lord\" type=\"hidden\" name=\"lord\">
<input value=\"$city\" type=\"hidden\" name=\"city\">
<input value=\"$alliance\" type=\"hidden\" name=\"alliance\">
<input value=\"$flag\" type=\"hidden\" name=\"flag\">
<input value=\"$SID\" type=\"hidden\" name=\"SID\" >
<button class=\"small align-right\" type=\"submit\" >".$i."</button></form>";
};