Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > Facebook
You last visited: Today at 07:23

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Dragon city gems hack

Discussion on Dragon city gems hack within the Facebook forum part of the Browsergames category.

Closed Thread
 
Old 07/05/2013, 15:02   #961
 
elite*gold: 0
Join Date: Mar 2013
Posts: 42
Received Thanks: 1
now he really stop reply
fmlharrywarden is offline  
Old 07/05/2013, 15:58   #962
 
Superdrac's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 463
Received Thanks: 2,420
I think he could give the sources of his php script to a person who want to continue, before he left the board.
Superdrac is offline  
Old 07/05/2013, 18:24   #963
 
benoit934's Avatar
 
elite*gold: 2149
Join Date: Nov 2007
Posts: 925
Received Thanks: 1,239
Code:
<?php
/**
 * @author benoitanastay
 *
 */
class dragoncmd {
	var $count; //Number of sent commands
	var $userkey; //The user session key
	var $user_agent; //The user agent used to request
	var $ginfo; //Object of game_info
	var $msgarr = array (); 
	var $key = "RGhXbiy4xEeDnSNX1oBG"; //Encryption key 
	var $mass; //if set do a barch command
	var $massnum; //The max number of commands to send by request default 100
	var $uid; //Player info
	var $map; //Map object
	var $jinfo; //Player Infos objects
	var $cb; // Couchbase object
	var $user_key; //The user session key
	var $result; //Result pf a request 
	var $result_state = false; //The state of the request
	
	/**
	 * @return boolean
	 */
	function reinit() {
		
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, "http://dynamicdc.socialpointgames.com/dragoncity/web/srv/get_user_session.php?secret=zoltan3287&id=" . $this->uid );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$this->user_key = curl_exec ( $ch );
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'http://dynamicdc.socialpointgames.com/dragoncity/web/srv/get_player_info.php?USERID=' . $this->uid . '&user_key=' . $this->user_key );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		$result = explode ( ';', $result );
		
		$this->jinfo = $result [1];
		$json = json_decode ( $this->jinfo );
		if (isset ( $json->result )) {
			if (! $json->result)
				return false;
		}
		return true;
	}
	
	/**
	 * @param jsonstring $cmd
	 * @param unixtime $time
	 * @return number
	 */
	function send($cmd, $time) {
		if (! isset ( $this->massnum ))
			$this->massnum = 100;
		if ($this->mass == "on") {
			if ($cmd == "send")
				$this->massnum = $this->count - 1;
			if (count ( $this->msgarr ) < $this->massnum && $cmd != "send") {
				$this->msgarr [$this->count] = $cmd;
				$this->count ++;
				return 0;
			}
			$cmd = implode ( ",", $this->msgarr );
			$this->msgarr = array ();
			$fst = $this->count - $this->massnum;
		} else {
			$fst = $this->count;
		}
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'http://dynamicdc.socialpointgames.com/dragoncity/web/srv/packet.php?USERID=' . $this->uid . '&user_key=' . $this->user_key );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		$data = '{"flashVersion":"0.3.27","commands":[' . $cmd . '],"first_number":' . $fst . ',"ts":' . $time . ',"publishActions":0,"tries":1}';
		$data = hash_hmac ( 'sha256', $data, $this->key ) . ';' . $data;
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'id=' . $this->uid . '&data=' . $data );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		$result = explode ( ';', $result );
		$player = json_decode ( $this->jinfo );
		$json = json_decode ( $result [1] );
		if (isset ( $json->response [0]->resources->pu->c )) {
			$this->result_state = true;
			$cn = $player->playerInfo->cash + $json->response [0]->resources->pu->c;
			$c = $json->response [0]->resources->pu->c;
		} else {
			$cn = $player->playerInfo->cash;
			$c = 0;
		}
		if (isset ( $json->response [0]->resources->pu->g )) {
			$this->result_state = true;
			$gn = $player->playerInfo->gold + $json->response [0]->resources->pu->g;
			$g = $json->response [0]->resources->pu->g;
		} else {
			$gn = $player->playerInfo->gold;
			$g = 0;
		}
		if (isset ( $json->response [0]->resources->pu->f )) {
			$this->result_state = true;
			$fn = $player->playerInfo->food + $json->response [0]->resources->pu->f;
			$f = $json->response [0]->resources->pu->f;
		} else {
			$fn = $player->playerInfo->food;
			$f = 0;
		}
		if (isset ( $json->response [0]->resources->pu->x )) {
			$xn = $player->playerInfo->xp + $json->response [0]->resources->pu->x;
			$x = $json->response [0]->resources->pu->x;
		} else {
			$xn = $player->playerInfo->xp;
			$x = 0;
		}
		$this->result = "<pre>
=======================
>>>Dragon City AFTER<<<
=======================
ID = " . $player->playerInfo->pid . "
Name = " . $player->playerInfo->name . "
Gems = " . $cn . " (+" . $c . ")
Food = " . $fn . " (+" . $f . ")
Gold = " . $gn . " (+" . $g . ")
Level = " . $player->playerInfo->level . "
Exp = " . $xn . " (+" . $x . ")
=======================
</pre>";
	}
	function cb_get() {
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=get&key=u%2F' . $this->uid . '%2Fpu&value=%7B%7D&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		// var_dump($result);
		preg_match ( '#C:52:"SP\\\\Bundle\\\\SocialDragonsBundle\\\\Domain\\\\UserPublicState":[0-9]+:{(.*)}#', $result, $matches );
		// var_dump($matches);
		$this->cb = json_decode ( $matches [1], true );
	}
	function cb_send() {
		$ch = curl_init ();
		if (! isset ( $this->cb ["pid"] ))
			die ( 'Error' );
		$json = json_encode ( $this->cb );
		$set = 'C:52:"SP\Bundle\SocialDragonsBundle\Domain\UserPublicState":' . strlen ( $json ) . ':{' . $json . '}';
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=set&key=u%2F' . $this->uid . '%2Fpu&value=' . urlencode ( $set ) . '&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		curl_exec ( $ch );
	}
	function map_get() {
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=get&key=u%2F' . $this->uid . '%2Fm1&value=%7B%7D&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		// var_dump($result);
		preg_match ( '#C:44:"SP\\\\Bundle\\\\SocialDragonsBundle\\\\Domain\\\\UserMap":[0-9]+:{(.*)}#', $result, $matches );
		// var_dump($matches);
		$this->map = json_decode ( $matches [1], true );
	}
	function map_send() {
		$ch = curl_init ();
		$json = json_encode ( $this->map );
		// var_dump($json);
		$set = 'C:44:"SP\Bundle\SocialDragonsBundle\Domain\UserMap":' . strlen ( $json ) . ':{' . $json . '}';
		// var_dump ($set);
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=set&key=u%2F' . $this->uid . '%2Fm1&value=' . urlencode ( $set ) . '&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		curl_exec ( $ch );
	}
}
?>

Quote:
Originally Posted by chien1234567* View Post
benoit, you are too irresponsible to this, you should notice your time constantly upgrading the hack, many people have to pay for you and sustain you upgrade it, if you stop it, you must have time for people to be able to use the things they spend money to buy. I bought your tool for 135,000 VND and can only be used more than 1 week, it is too little compared to what I spent. I hope you will think again
Sorry for my english level
is a very long time for a hack
benoit934 is offline  
Thanks
1 User
Old 07/05/2013, 18:30   #964
 
Superdrac's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 463
Received Thanks: 2,420
Pas comme ça benoit -__- Ca va être patché direct ...
Superdrac is offline  
Old 07/05/2013, 18:54   #965
 
elite*gold: 0
Join Date: May 2012
Posts: 140
Received Thanks: 40
i think we should not moan at benoit his tools was great i thank him for his work
its just a shame he wont update it any more
haveitdave is offline  
Old 07/05/2013, 19:28   #966
 
elite*gold: 0
Join Date: Jun 2013
Posts: 28
Received Thanks: 0
Thank Benoit for everything
chien1234567* is offline  
Old 07/05/2013, 19:39   #967
 
elite*gold: 0
Join Date: Jun 2013
Posts: 36
Received Thanks: 1
Quote:
Originally Posted by benoit934 View Post
Code:
<?php
/**
 * @author benoitanastay
 *
 */
class dragoncmd {
	var $count; //Number of sent commands
	var $userkey; //The user session key
	var $user_agent; //The user agent used to request
	var $ginfo; //Object of game_info
	var $msgarr = array (); 
	var $key = "RGhXbiy4xEeDnSNX1oBG"; //Encryption key 
	var $mass; //if set do a barch command
	var $massnum; //The max number of commands to send by request default 100
	var $uid; //Player info
	var $map; //Map object
	var $jinfo; //Player Infos objects
	var $cb; // Couchbase object
	var $user_key; //The user session key
	var $result; //Result pf a request 
	var $result_state = false; //The state of the request
	
	/**
	 * @return boolean
	 */
	function reinit() {
		
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, "http://dynamicdc.socialpointgames.com/dragoncity/web/srv/get_user_session.php?secret=zoltan3287&id=" . $this->uid );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$this->user_key = curl_exec ( $ch );
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'http://dynamicdc.socialpointgames.com/dragoncity/web/srv/get_player_info.php?USERID=' . $this->uid . '&user_key=' . $this->user_key );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		$result = explode ( ';', $result );
		
		$this->jinfo = $result [1];
		$json = json_decode ( $this->jinfo );
		if (isset ( $json->result )) {
			if (! $json->result)
				return false;
		}
		return true;
	}
	
	/**
	 * @param jsonstring $cmd
	 * @param unixtime $time
	 * @return number
	 */
	function send($cmd, $time) {
		if (! isset ( $this->massnum ))
			$this->massnum = 100;
		if ($this->mass == "on") {
			if ($cmd == "send")
				$this->massnum = $this->count - 1;
			if (count ( $this->msgarr ) < $this->massnum && $cmd != "send") {
				$this->msgarr [$this->count] = $cmd;
				$this->count ++;
				return 0;
			}
			$cmd = implode ( ",", $this->msgarr );
			$this->msgarr = array ();
			$fst = $this->count - $this->massnum;
		} else {
			$fst = $this->count;
		}
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'http://dynamicdc.socialpointgames.com/dragoncity/web/srv/packet.php?USERID=' . $this->uid . '&user_key=' . $this->user_key );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		$data = '{"flashVersion":"0.3.27","commands":[' . $cmd . '],"first_number":' . $fst . ',"ts":' . $time . ',"publishActions":0,"tries":1}';
		$data = hash_hmac ( 'sha256', $data, $this->key ) . ';' . $data;
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'id=' . $this->uid . '&data=' . $data );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		$result = explode ( ';', $result );
		$player = json_decode ( $this->jinfo );
		$json = json_decode ( $result [1] );
		if (isset ( $json->response [0]->resources->pu->c )) {
			$this->result_state = true;
			$cn = $player->playerInfo->cash + $json->response [0]->resources->pu->c;
			$c = $json->response [0]->resources->pu->c;
		} else {
			$cn = $player->playerInfo->cash;
			$c = 0;
		}
		if (isset ( $json->response [0]->resources->pu->g )) {
			$this->result_state = true;
			$gn = $player->playerInfo->gold + $json->response [0]->resources->pu->g;
			$g = $json->response [0]->resources->pu->g;
		} else {
			$gn = $player->playerInfo->gold;
			$g = 0;
		}
		if (isset ( $json->response [0]->resources->pu->f )) {
			$this->result_state = true;
			$fn = $player->playerInfo->food + $json->response [0]->resources->pu->f;
			$f = $json->response [0]->resources->pu->f;
		} else {
			$fn = $player->playerInfo->food;
			$f = 0;
		}
		if (isset ( $json->response [0]->resources->pu->x )) {
			$xn = $player->playerInfo->xp + $json->response [0]->resources->pu->x;
			$x = $json->response [0]->resources->pu->x;
		} else {
			$xn = $player->playerInfo->xp;
			$x = 0;
		}
		$this->result = "<pre>
=======================
>>>Dragon City AFTER<<<
=======================
ID = " . $player->playerInfo->pid . "
Name = " . $player->playerInfo->name . "
Gems = " . $cn . " (+" . $c . ")
Food = " . $fn . " (+" . $f . ")
Gold = " . $gn . " (+" . $g . ")
Level = " . $player->playerInfo->level . "
Exp = " . $xn . " (+" . $x . ")
=======================
</pre>";
	}
	function cb_get() {
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=get&key=u%2F' . $this->uid . '%2Fpu&value=%7B%7D&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		// var_dump($result);
		preg_match ( '#C:52:"SP\\\\Bundle\\\\SocialDragonsBundle\\\\Domain\\\\UserPublicState":[0-9]+:{(.*)}#', $result, $matches );
		// var_dump($matches);
		$this->cb = json_decode ( $matches [1], true );
	}
	function cb_send() {
		$ch = curl_init ();
		if (! isset ( $this->cb ["pid"] ))
			die ( 'Error' );
		$json = json_encode ( $this->cb );
		$set = 'C:52:"SP\Bundle\SocialDragonsBundle\Domain\UserPublicState":' . strlen ( $json ) . ':{' . $json . '}';
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=set&key=u%2F' . $this->uid . '%2Fpu&value=' . urlencode ( $set ) . '&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		curl_exec ( $ch );
	}
	function map_get() {
		$ch = curl_init ();
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=get&key=u%2F' . $this->uid . '%2Fm1&value=%7B%7D&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		$result = curl_exec ( $ch );
		// var_dump($result);
		preg_match ( '#C:44:"SP\\\\Bundle\\\\SocialDragonsBundle\\\\Domain\\\\UserMap":[0-9]+:{(.*)}#', $result, $matches );
		// var_dump($matches);
		$this->map = json_decode ( $matches [1], true );
	}
	function map_send() {
		$ch = curl_init ();
		$json = json_encode ( $this->map );
		// var_dump($json);
		$set = 'C:44:"SP\Bundle\SocialDragonsBundle\Domain\UserMap":' . strlen ( $json ) . ':{' . $json . '}';
		// var_dump ($set);
		curl_setopt ( $ch, CURLOPT_URL, 'https://dynamicdc.socialpointgames.com/dragoncity/web/admin/packet_cb' );
		curl_setopt ( $ch, CURLOPT_POST, 1 );
		curl_setopt ( $ch, CURLOPT_POSTFIELDS, 'type=set&key=u%2F' . $this->uid . '%2Fm1&value=' . urlencode ( $set ) . '&secret=zoltan3287' );
		curl_setopt ( $ch, CURLOPT_USERAGENT, $this->user_agent );
		curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
		curl_setopt ( $ch, CURLOPT_HEADER, false );
		curl_setopt ( $ch, CURLOPT_NOBODY, false );
		curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
		curl_exec ( $ch );
	}
}
?>
How will I be able to run your PHP code When I do not have Server
And. You can share Code Hack Monster Legend
imNatsu is offline  
Old 07/05/2013, 21:34   #968
 
elite*gold: 0
Join Date: May 2011
Posts: 41
Received Thanks: 2
benoit these code that you put how it works?
If you explain it was revealed would be grateful for me to try thanks

Benoit was sad for you to have stopped doing hack, I learned that a well tool later discovered his tool while gaining 50,000 gold gems 1 million 1 million food, give the last update that you did for dragon city and other games I bought your tool, most want to thank you for making this tool thanks for the time that the tool was on, thanks for all your responses I asked you all spondee me, thank you for your tools, if someday your tool turns would be very happy, the only tool that actually works thanks.
smlvm02 is offline  
Old 07/05/2013, 23:58   #969
 
elite*gold: 0
Join Date: Sep 2012
Posts: 150
Received Thanks: 7
thanks for the code. but how to use it. please explain. it was good till the end. you rock sir benoit
ceilsuz26 is offline  
Old 07/06/2013, 00:28   #970
 
elite*gold: 0
Join Date: Aug 2010
Posts: 16
Received Thanks: 52
estoy mas q satisfecho, gracias por las gemas sr benoit, pero estaria bueno un regalo de despedida
kakarot0 is offline  
Old 07/06/2013, 00:45   #971
 
elite*gold: 0
Join Date: Mar 2013
Posts: 12
Received Thanks: 0
Talking

Quote:
Originally Posted by kakarot0 View Post
estoy mas q satisfecho, gracias por las gemas sr benoit, pero estaria bueno un regalo de despedida
jajajajajaja che paja que no ves q es frances el otro? en todo caso INGLES seguramente te entienda.

Mejor preocupate x no gastarte las gemas q te quedan xq cuando vengas a casa llorando q no tenes gemas te pateo la bola de los ojos.
Arkangel_G is offline  
Old 07/06/2013, 01:16   #972
 
Superdrac's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 463
Received Thanks: 2,420
I try the code that benoit give to us. It don't work for me.
Superdrac is offline  
Old 07/06/2013, 01:57   #973
 
elite*gold: 0
Join Date: Nov 2008
Posts: 5
Received Thanks: 1
Using survey download mirrors (e.g. sharecash) is prohibited unless there is another mirror option = Benoit hacks (pay)
3dgard0 is offline  
Old 07/06/2013, 02:05   #974
 
elite*gold: 0
Join Date: Mar 2013
Posts: 95
Received Thanks: 14
Let him work, i already pay the tool but im glad to pay again to suport him, the tool is very cheap i encourage people to support him and dont be so annoying asking for free gems and demand instant updates because is a hard work to do.
Z3R0XZ is offline  
Old 07/06/2013, 02:11   #975
 
Superdrac's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 463
Received Thanks: 2,420
We don't have the page who are before this script, so we don't know what it is in the $cmd variable.

Z3R0XZ -> Benoit stop his tool, he took his decision...
Superdrac is offline  
Closed Thread


Similar Threads Similar Threads
Dragon city gems hack
01/31/2016 - Facebook - 46 Replies
here is the tool that they use to send gems...:mad::mad: DCHI Premium Hack v2.4 - YouTube and i found this:D:D:handsdown: https://www.facebook.com/DCHIindonesia/app_141676 64298 I don't find it anywere....why don't they share the tool?...it's so hard to make everyone happy and to stop with this stupid events...:handsdown::handsdown:
Dragon City gems hack
03/10/2013 - Facebook - 1736 Replies
It's done the tool don't work and I think it will be anymore working Only the unlocker and the bot work at this time Unlocker : http://cg1.fr/gems.php Bot : http://cg1.fr/dragon_info.php?bot=1 Hi, many players ask me for gems hack, I have find how to hack gems but if I share it for free it will be fixed and all accounts reseted I sell it very low cost and is unlimited use, you have nothing to do is fully automated
Dragon City Gems Hack
03/07/2013 - Facebook - 26 Replies
Features: Gem Sender Only So you have to use dummy accounts to do this. The instruction is included in the program. Im using this hack alone for almost 2 months and since i Have all the Dragons I will share it to you but its not free Im selling this hack for only $2.00 via paypal What a cheap price right? But if you dont have paypal account i will put a survey on the download URL. thanks Guys. . .
Dragon City Hack Gems
01/20/2013 - Facebook - 14 Replies
SomeOnes Tell me If it Wroknig Or not.... :D :handsdown::handsdown::handsdown: VIRUS SCAN : https://www.virustotal.com/file/746b06c5cab8c9b776 913c67174520e0d8b8aeefa27aa71bc047d86e67ceaab9/ana lysis/1354263187/
Dragon City Hack Gems!
11/28/2012 - Facebook - 6 Replies
Can anyone Telll Me if it is Working or not? Dragon City Hack Tool v1.2 -Admin Paul-.rar



All times are GMT +1. The time now is 07:24.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.