You last visited: Today at 01:46
Advertisement
[Share] Script D*HI DC EGGS, ML , DW
Discussion on [Share] Script D*HI DC EGGS, ML , DW within the Facebook forum part of the Browsergames category.
07/27/2013, 08:29
#1
elite*gold: 0
Join Date: Jul 2012
Posts: 34
Received Thanks: 232
[Share] Script D*HI DC EGGS, ML , DW
Share Dragon City Script DC*I
DC EGGS
PHP Code:
<?php
var eldcegg = document . getElementById ( "tools_dcegg" );
eldcegg . onclick = function () {
state = "tools_dcegg" ;
var str = "<a href='https://apps.facebook.com/dragoncity/' target='_blank'>DRAGON CITY</a> - EGGS<br/><br/>ID FB:<br/>
<input name=" fbid " /><br/>FLASH VERSION:<br/><input id='dcegg_flashVersion' name='flashVersion' value=" + dcver + " /><br/>USER KEY:<br/><input id='dcegg_ukey' name='ukey' value='' /><br/>egg code:<br/><input id='dcegg_egg' name='egg' size='68'/><br/><button onclick='btnDCEGG()' />Send</button>" ;
if( lastRes . dcegg != "" ) { str = lastRes . dcegg }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
function btnDCEGG (){
dcver = document . getElementById ( "dcegg_flashVersion" ). value ;
var egg = document . getElementById ( "dcegg_egg" ). value ;
var $userkey = parseInt ( document . getElementById ( "dcegg_ukey" ). value );
if( egg == "all" ){}
else if( egg == "clear" ){}
else{
var arr = egg . split ( "," );
for(var i = 0 ; i < arr . length ; i ++){
arr [ i ]= parseInt ( arr [ i ]);
}
egg = arr . join ( "," );
}
document . getElementById ( "contentArea" ). innerHTML = "DCEGG WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/dcegg/" + dcver + "/" + egg + "/" + ukey ,function( o ){
if( o . result ){
lastRes . dcegg = "DC EGG<br/><br/>EGG: " + egg + "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . dcegg += " (" + o . ref + ")" ;}
}else{ lastRes . dcegg = "SEND ERROR<br/><br/><button onclick='clearDCEGG()'>CLOSE</button>" ;}
if( state == "tools_dcegg" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dcegg ;}});
}
function orderStatus (){
}
if( o . dcegg ){
lastRes . dcegg = o . dcegg + "<br/><br/><button onclick='clearDCEGG()'>CLOSE</button>" ;
if( state == "tools_dcegg" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dcegg ;}
}
}
<?
ML GEMS CODE
PHP Code:
<?php
var elmcgems = document . getElementById ( "tools_mcgems" );
elmcgems . onclick = function () {
state = "tools_mcgems" ;
var str = "<a href='https://apps.facebook.com/monsterlegends/' target='_blank'>MONSTER LEGEND</a><br/><br/>ID FB:<br/>
<input name=" fbid " />FLASH VERSION:<br/><input id='mcgems_flashVersion' name='flashVersion' value=" + mcver + " /><br/>GEMS:<br/><select id='mcgems_gems' name='gems'><option value='0'>500 Gems</option><option value='1'>1.000 Gems</option><option value='2'>1.500 Gems</option><option value='3' selected='selected' >2.000 Gems</option><option value='4'>2.500 Gems</option><option value='5'>3.000 Gems</option><option value='6'>Level Monster Max</option><option value='7'>All Egg</option></select> <button onclick='btnMCGEMS()' />Send</button>" ;
if( lastRes . mcgems != "" ) { str = lastRes . mcgems }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
var mcgemsList =[ "500 Gems" , "1.000 Gems" , "1.500 Gems" , "2.000 Gems" , "2.500 Gems" , "3.000 Gems" , "Level Monster Max" , "All Egg" ];
function btnMCGEMS (){
mcver = document . getElementById ( "mcgems_flashVersion" ). value ;
var gems = parseInt ( document . getElementById ( "mcgems_gems" ). value );
document . getElementById ( "contentArea" ). innerHTML = "MCGEMS WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/mcgems/" + mcver + "/" + gems ,function( o ){
if( o . result ){
lastRes . mcgems = "MC GEMS<br/><br/>GEMS: " + mcgemsList [ gems ]+ "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . mcgems += " (" + o . ref + ")" ;}
}else{ lastRes . mcgems = "SEND ERROR<br/><br/><button onclick='clearMCGEMS()'>CLOSE</button>" ;}
if( state == "tools_mcgems" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . mcgems ;}});
}
function clearMCGEMS (){ lastRes . mcgems = "" ; elmcgems . click ();}
<?
DW GEMS
PHP Code:
<?php
var eldwgems = document . getElementById ( "tools_dwgems" );
eldwgems . onclick = function () {
state = "tools_dwgems" ;
var str = "<a href='https://apps.facebook.com/darkwarriorsgame/' target='_blank'>DARK WARRIORS</a><br/><br/>ID FB:<br/>
<input name=" fbid " /><br/>FLASH VERSION:<br/><input id='dwgems_flashVersion' name='flashVersion' value=" + dwver + " /><br/>gems:<br/><input id='dwgems_cash' name='cash' value='0'/><br/>gold:<br/><input id='dwgems_gold' name='gold' value='0'/><br/>food:<br/><select id='dwgems_food' name='food'><option value='0' selected='selected'>NO FOOD</option><option value='1'>1M</option><option value='2'>2M</option><option value='3'>3M</option><option value='4'>4M</option><option value='5'>5M</option><option value='6'>10M</option><option value='7'>20M</option><option value='8'>30M</option><option value='9'>40M</option><option value='10'>50M</option></select><br/>xp:<br/><input id='dwgems_xp' name='xp' value='0'/><br/><button onclick='btnDWGEMS()' />Send</button>" ;
if( lastRes . dwgems != "" ) { str = lastRes . dwgems }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
var dwfoodlist =[ "NO FOOD" , "1M Food" , "2M Food" , "3M Food" , "4M Food" , "5M Food" , "10M Food" , "20M Food" , "30M Food" , "40M Food" , "50M Food" ];
function btnDWGEMS (){
dwver = document . getElementById ( "dwgems_flashVersion" ). value ;
var cash = parseInt ( document . getElementById ( "dwgems_cash" ). value );
var gold = parseInt ( document . getElementById ( "dwgems_gold" ). value );
var food = parseInt ( document . getElementById ( "dwgems_food" ). value );
var xp = parseInt ( document . getElementById ( "dwgems_xp" ). value );
document . getElementById ( "contentArea" ). innerHTML = "DW WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/dwgems/" + dwver + "/" + cash + "/" + gold + "/" + food + "/" + xp ,function( o ){
if( o . result ){
lastRes . dwgems = "DARK WARRIORS<br/><br/>CASH: " + cash + "<br/>GOLD: " + gold + "<br/>FOOD: " + dwfoodlist [ food ]+ "<br/>XP: " + xp + "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . dwgems += " (" + o . ref + ")" ;}
}else{ lastRes . dwgems = "SEND ERROR<br/><br/><button onclick='clearDWGEMS()'>CLOSE</button>" ;}
if( state == "tools_dwgems" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dwgems ;}});
}
<?
Upload ^^ this
07/27/2013, 08:38
#2
elite*gold: 0
Join Date: Mar 2013
Posts: 127
Received Thanks: 56
everything failed to load
07/27/2013, 08:44
#3
elite*gold: 0
Join Date: Jul 2013
Posts: 82
Received Thanks: 10
Parse error: syntax error, unexpected T_VAR in /home/u913338986/public_html/codephp/code.php on line 2 ??????????????????
07/27/2013, 08:48
#4
elite*gold: 0
Join Date: Jun 2013
Posts: 140
Received Thanks: 13
ML fail
07/27/2013, 08:54
#5
elite*gold: 0
Join Date: Feb 2013
Posts: 13
Received Thanks: 1
Parse error: syntax error, unexpected T_VAR in /home/u913338986/public_html/codephp/code.php on line 2
07/27/2013, 09:05
#6
elite*gold: 0
Join Date: Jul 2013
Posts: 20
Received Thanks: 0
07/27/2013, 09:06
#7
elite*gold: 0
Join Date: Jul 2013
Posts: 19
Received Thanks: 4
where is "tools_dcegg"
07/27/2013, 09:11
#8
elite*gold: 0
Join Date: Jul 2013
Posts: 82
Received Thanks: 10
Quote:
Originally Posted by
diamoc
where is "tools_dcegg"
???
07/27/2013, 09:12
#9
elite*gold: 0
Join Date: Jul 2013
Posts: 28
Received Thanks: 0
no working
07/27/2013, 09:20
#10
elite*gold: 0
Join Date: Jul 2012
Posts: 34
Received Thanks: 232
or go to site
DC EGGS =
wait 5m
07/27/2013, 09:28
#11
elite*gold: 0
Join Date: Jul 2013
Posts: 82
Received Thanks: 10
Quote:
Originally Posted by
davindra
or go to site
DC EGGS =
wait 5m
{"result":false,"err":1}
07/27/2013, 09:36
#12
elite*gold: 0
Join Date: Jun 2009
Posts: 8
Received Thanks: 0
ML fail
07/27/2013, 09:51
#13
elite*gold: 0
Join Date: Jul 2013
Posts: 21
Received Thanks: 2
How do we use this script ?
07/27/2013, 10:08
#14
elite*gold: 0
Join Date: Jul 2013
Posts: 38
Received Thanks: 3
Quote:
Originally Posted by
davindra
Share Dragon City Script DC*I
DC EGGS
PHP Code:
<?php
var eldcegg = document . getElementById ( "tools_dcegg" );
eldcegg . onclick = function () {
state = "tools_dcegg" ;
var str = "<a href='https://apps.facebook.com/dragoncity/' target='_blank'>DRAGON CITY</a> - EGGS<br/><br/>ID FB:<br/>
<input name=" fbid " /><br/>FLASH VERSION:<br/><input id='dcegg_flashVersion' name='flashVersion' value=" + dcver + " /><br/>USER KEY:<br/><input id='dcegg_ukey' name='ukey' value='' /><br/>egg code:<br/><input id='dcegg_egg' name='egg' size='68'/><br/><button onclick='btnDCEGG()' />Send</button>" ;
if( lastRes . dcegg != "" ) { str = lastRes . dcegg }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
function btnDCEGG (){
dcver = document . getElementById ( "dcegg_flashVersion" ). value ;
var egg = document . getElementById ( "dcegg_egg" ). value ;
var $userkey = parseInt ( document . getElementById ( "dcegg_ukey" ). value );
if( egg == "all" ){}
else if( egg == "clear" ){}
else{
var arr = egg . split ( "," );
for(var i = 0 ; i < arr . length ; i ++){
arr [ i ]= parseInt ( arr [ i ]);
}
egg = arr . join ( "," );
}
document . getElementById ( "contentArea" ). innerHTML = "DCEGG WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/dcegg/" + dcver + "/" + egg + "/" + ukey ,function( o ){
if( o . result ){
lastRes . dcegg = "DC EGG<br/><br/>EGG: " + egg + "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . dcegg += " (" + o . ref + ")" ;}
}else{ lastRes . dcegg = "SEND ERROR<br/><br/><button onclick='clearDCEGG()'>CLOSE</button>" ;}
if( state == "tools_dcegg" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dcegg ;}});
}
function orderStatus (){
}
if( o . dcegg ){
lastRes . dcegg = o . dcegg + "<br/><br/><button onclick='clearDCEGG()'>CLOSE</button>" ;
if( state == "tools_dcegg" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dcegg ;}
}
}
<?
ML GEMS CODE
PHP Code:
<?php
var elmcgems = document . getElementById ( "tools_mcgems" );
elmcgems . onclick = function () {
state = "tools_mcgems" ;
var str = "<a href='https://apps.facebook.com/monsterlegends/' target='_blank'>MONSTER LEGEND</a><br/><br/>ID FB:<br/>
<input name=" fbid " />FLASH VERSION:<br/><input id='mcgems_flashVersion' name='flashVersion' value=" + mcver + " /><br/>GEMS:<br/><select id='mcgems_gems' name='gems'><option value='0'>500 Gems</option><option value='1'>1.000 Gems</option><option value='2'>1.500 Gems</option><option value='3' selected='selected' >2.000 Gems</option><option value='4'>2.500 Gems</option><option value='5'>3.000 Gems</option><option value='6'>Level Monster Max</option><option value='7'>All Egg</option></select> <button onclick='btnMCGEMS()' />Send</button>" ;
if( lastRes . mcgems != "" ) { str = lastRes . mcgems }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
var mcgemsList =[ "500 Gems" , "1.000 Gems" , "1.500 Gems" , "2.000 Gems" , "2.500 Gems" , "3.000 Gems" , "Level Monster Max" , "All Egg" ];
function btnMCGEMS (){
mcver = document . getElementById ( "mcgems_flashVersion" ). value ;
var gems = parseInt ( document . getElementById ( "mcgems_gems" ). value );
document . getElementById ( "contentArea" ). innerHTML = "MCGEMS WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/mcgems/" + mcver + "/" + gems ,function( o ){
if( o . result ){
lastRes . mcgems = "MC GEMS<br/><br/>GEMS: " + mcgemsList [ gems ]+ "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . mcgems += " (" + o . ref + ")" ;}
}else{ lastRes . mcgems = "SEND ERROR<br/><br/><button onclick='clearMCGEMS()'>CLOSE</button>" ;}
if( state == "tools_mcgems" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . mcgems ;}});
}
function clearMCGEMS (){ lastRes . mcgems = "" ; elmcgems . click ();}
<?
DW GEMS
PHP Code:
<?php
var eldwgems = document . getElementById ( "tools_dwgems" );
eldwgems . onclick = function () {
state = "tools_dwgems" ;
var str = "<a href='https://apps.facebook.com/darkwarriorsgame/' target='_blank'>DARK WARRIORS</a><br/><br/>ID FB:<br/>
<input name=" fbid " /><br/>FLASH VERSION:<br/><input id='dwgems_flashVersion' name='flashVersion' value=" + dwver + " /><br/>gems:<br/><input id='dwgems_cash' name='cash' value='0'/><br/>gold:<br/><input id='dwgems_gold' name='gold' value='0'/><br/>food:<br/><select id='dwgems_food' name='food'><option value='0' selected='selected'>NO FOOD</option><option value='1'>1M</option><option value='2'>2M</option><option value='3'>3M</option><option value='4'>4M</option><option value='5'>5M</option><option value='6'>10M</option><option value='7'>20M</option><option value='8'>30M</option><option value='9'>40M</option><option value='10'>50M</option></select><br/>xp:<br/><input id='dwgems_xp' name='xp' value='0'/><br/><button onclick='btnDWGEMS()' />Send</button>" ;
if( lastRes . dwgems != "" ) { str = lastRes . dwgems }
document . getElementById ( "contentArea" ). innerHTML = str ;
}
var dwfoodlist =[ "NO FOOD" , "1M Food" , "2M Food" , "3M Food" , "4M Food" , "5M Food" , "10M Food" , "20M Food" , "30M Food" , "40M Food" , "50M Food" ];
function btnDWGEMS (){
dwver = document . getElementById ( "dwgems_flashVersion" ). value ;
var cash = parseInt ( document . getElementById ( "dwgems_cash" ). value );
var gold = parseInt ( document . getElementById ( "dwgems_gold" ). value );
var food = parseInt ( document . getElementById ( "dwgems_food" ). value );
var xp = parseInt ( document . getElementById ( "dwgems_xp" ). value );
document . getElementById ( "contentArea" ). innerHTML = "DW WAIT..." ;
sendData ( "https://fb.dchi.asia/order/' . $fbid . '/dwgems/" + dwver + "/" + cash + "/" + gold + "/" + food + "/" + xp ,function( o ){
if( o . result ){
lastRes . dwgems = "DARK WARRIORS<br/><br/>CASH: " + cash + "<br/>GOLD: " + gold + "<br/>FOOD: " + dwfoodlist [ food ]+ "<br/>XP: " + xp + "<br/><br/>ON PROSES, PLEASE WAIT!" ;
if( o . ref ){ lastRes . dwgems += " (" + o . ref + ")" ;}
}else{ lastRes . dwgems = "SEND ERROR<br/><br/><button onclick='clearDWGEMS()'>CLOSE</button>" ;}
if( state == "tools_dwgems" ){ document . getElementById ( "contentArea" ). innerHTML = lastRes . dwgems ;}});
}
<?
Upload ^^ this
dùng như nào vậy
07/27/2013, 10:20
#15
elite*gold: 0
Join Date: Jul 2013
Posts: 77
Received Thanks: 14
ML code has error, please fix it
Similar Threads
Facebook Share-Script!
04/02/2014 - Coding Releases - 6 Replies
I releasing here the Facebook "must Share before see content"-Script! Have fun with that!
Installation:
1)<iframe src='http://www.facebook.com/plugins/likebox.php?i d=127879837313559' name='fbl' class='likeframe' scrolling='no' frameborder='0'></iframe>
change this to your page id :
2)<script type="text/javascript"></script> ;<span onclick="getsome();document.getElementById('c lose_div').style.display = 'none';...
Any One Can Share Dragon City Script To Me ?
07/24/2013 - Facebook - 1 Replies
I Am MAT Hacker
i want to dragon city script
who can share me ?
[SHARE] Script DC with Book Hack
07/22/2013 - Facebook - 0 Replies
Could someone share the script with Dragon City Book BUG or some site that has Book BUG?
anyone wanna share their bot script?
03/08/2008 - Dekaron - 0 Replies
help me ive made my own scripts but my character dont do anything after i run the 2moonbot?
All times are GMT +2. The time now is 01:46 .