I Need DC Gold Script Or Food Script Or Gems Script And View Info DC Script
Please Give Me
Please Give Me
this script is just checking info can someone share code to add gold, food or xp anything in such?Quote:
Enjoy :)
Main index.php
<?PHP
ini_set('display_errors','off');
?>
<!DOCTYPE HTML>
<html>
<!-- Header-->
<head>
<title>Dragon City + Monster Legend Info - HackClick.com</title>
<meta name="keywords" content="dragon city info, monster legend info, player information hack">
<meta name="description" content="Welcome to HackClick.com . HackClick.com is the site which provides you the best & updated support for the games in Facebook or non-Facebook games.">
<meta name="author" content="DragXon">
<link rel="shortcut icon" href="/asset/img/icon.png" type="image/png">
<link rel="stylesheet" href="/asset/css/bootstrap.css" media="screen">
<script src="/asset/js/jquery.min.js"></script>
</head>
<!-- Header-->
<body style="background-image: url('/asset/img/background.png')" >
<div class="container">
<div class="row">
<!-- Starter -->
<div class="col-lg-4">
</div>
<div class="col-lg-4" align="center">
<h4><img src="/asset/img/dc.png" alt="dc" > Dragon City + <img src="/asset/img/ml.png" alt="ml" > Monster Legend Info</h4>
<div class="panel panel-primary" align="center">
<div class="panel-heading">
<h3 class="panel-title"><img src="/asset/img/info.png" > Information Form</h3>
</div>
<div class="panel-body">
<form method="post">
<div class="form-group has-success">
<label class="control-label" for="playerid">User ID</label>
<input name="playerid" class="form-control" id="playerid" placeholder="Fill Player User ID" value="<?PHP echo $_POST['playerid']; ?>">
</div>
<div class="form-group has-warning">
<label class="control-label" for="game">Game</label>
<select class="form-control" name="game">
<option value="dc" >Dragon City</option>
<option value="ml" >Monster Legends</option>
</select>
</div>
<button class="btn btn-default" type="submit"><img src="/asset/img/ok.png" > Submit</button>
</form>
</div>
</div>
</div>
<div class="col-lg-4">
</div>
</div>
<div class="row">
<!-- Starter -->
<div class="col-lg-2">
</div>
<div class="col-lg-8" align="center">
<div class="panel panel-default">
<div class="panel-heading"><img src="/asset/img/result.png" > Result</div>
<div class="panel-body">
<div class="well" id="result">
<?PHP
if($_POST['playerid']) {
$game=$_POST['game'];
$fbid=$_POST['playerid'];
if($_POST['playerid']=='') {
echo 'Fill Player ID';
} else {
if($game == "dc"){
$ch = curl_init();
curl_setopt ( $ch, CURLOPT_URL, "http://dc-canvas.socialpointgames.com/users/$fbid");
curl_setopt ( $ch, CURLOPT_HEADER, false );
curl_setopt ( $ch, CURLOPT_NOBODY, false );
curl_setopt ( $ch, CURLOPT_ENCODING , "gzip");
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
$result = curl_exec( $ch );
$data = json_decode($result,true);
$name= $data['data']['full_name'];
$gold=number_format($data['data']['resources']['g'],0,',','.');
$food=number_format($data['data']['resources']['f'],0,',','.');
$gem=number_format($data['data']['resources']['c'],0,',','.');
$exp=number_format($data['data']['resources']['x'],0,',','.');
$dragon=count($data['data']['map']['dragons']);
$Str='<img class="img-circle" src="http://graph.facebook.com/'.$fbid.'/picture?type=small" /></br>
Name: '.$name.'<br>Gem: '.$gem.'<br>Gold: '.$gold.'<br>Food: '.$food.'<br>XP: '.$exp.'</br>Total Dragons: '.$dragon;
echo $Str;
}
elseif($game == "ml"){
$ch = curl_init();
curl_setopt ( $ch, CURLOPT_URL, "http://mc.socialpointgames.com/users/$fbid");
curl_setopt ( $ch, CURLOPT_HEADER, false );
curl_setopt ( $ch, CURLOPT_NOBODY, false );
curl_setopt ( $ch, CURLOPT_ENCODING , "gzip");
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 5 );
curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
$result = curl_exec( $ch );
$data = json_decode($result,true);
$name= $data['data']['full_name'];
$gold=number_format($data['data']['resources']['g'],0,',','.');
$food=number_format($data['data']['resources']['f'],0,',','.');
$gem=number_format($data['data']['resources']['c'],0,',','.');
$exp=number_format($data['data']['resources']['x'],0,',','.');
$dragon=count($data['data']['map']['dragons']);
$Str='<img class="img-circle" src="http://graph.facebook.com/'.$fbid.'/picture?type=small" /></br>
Name: '.$name.'<br>Gem: '.$gem.'<br>Gold: '.$gold.'<br>Food: '.$food.'<br>XP: '.$exp.'</br>Total Monsters: '.$dragon;
echo $Str;
}
}
}
else {
echo '...'; }
?>
</div>
<?PHP
if($data) {
echo '<table class="table table-striped table-hover ">
<thead>
<tr class="danger">
<th >UID</th>
<th>IID</th>
<th>Type</th>
<th>Name</th>
<th>Xp</th>
<th>Level</th>
<th>Habitat ID</th>
</tr>
</thead>
<tbody>';
if($game=="dc") {
require('dc-code.php');
foreach ($data['data']['map']['dragons'] as $value)
{
echo '<tr><td>'.$value['uid'].'</td><td>'.$value['iid'].'</td><td>'.$CodeML[$value['iid']].'</td><td>'.$value['name'].'</td><td>'.$value['xp'].'</td><td>'.$value['level'].'</td><td>'.$value['habitatUid'].'</td></tr>';
}
echo '</tbody>
</table> ';
} elseif($game=="ml") {
require('ml-code.php');
foreach ($data['data']['map']['dragons'] as $value)
{
echo '<tr><td>'.$value['uid'].'</td><td>'.$value['iid'].'</td><td>'.$CodeML[$value['iid']].'</td><td>'.$value['name'].'</td><td>'.$value['xp'].'</td><td>'.$value['level'].'</td><td>'.$value['habitatUid'].'</td></tr>';
}
echo '</tbody>
</table> ';
}
}
?>
</div>
</div>
</div>
<div class="col-lg-2">
</div>
</div>
</div>
<!-- Import Scripts -->
<script src="/asset/js/bootstrap.min.js"></script>
<!-- End Import -->
<!-- Return -->
<script>
var title = document.title;
$(window).blur(function(){
document.title = 'Please Return!';
});
$(window).focus(function(){
document.title = title;
});
</script>
<!-- Return -->
<!--- Google Analysis --->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-63290838-1', 'auto');
ga('send', 'pageview');
</script>
<!--- Google Analysis --->
<!--- Stats-->
<script id="_wautv7">var _wau = _wau || [];
_wau.push(["tab", "qgtekxtnruo4", "tv7", "bottom-right"]);
(function() {var s=document.createElement("script"); s.async=true;
s.src="http://widgets.amung.us/tab.js";
document.getElementsByTagName("head")[0].appendChild(s);
})();</script>
<!--- Stats-->
<!-- Ads--->
<!-- End Ads -->
</body>
</html>
dc-code.php
<?php
$CodeML[1]="Hatchery";
$CodeML[2]="Nature Crystal";
$CodeML[3]="Terra Crystal";
$CodeML[4]="Flame Crystal";
$CodeML[5]="Ice Crystal";
$CodeML[6]="Electric Crystal";
$CodeML[7]="Sea Crystal";
$CodeML[8]="Dark Crystal";
$CodeML[9]="Magic Temple";
$CodeML[10]="Noble Temple";
$CodeML[11]="Knight Temple";
$CodeML[12]="Master Temple";
$CodeML[14]="Legend Crystal";
$CodeML[15]="Metal Crystal";
$CodeML[16]="Food Farm";
$CodeML[17]="Big Food Farm";
$CodeML[18]="Huge Food Farm";
$CodeML[19]="Breeding Mountain";
$CodeML[20]="Stadium";
$CodeML[21]="Deus Statue";
$CodeML[22]="Training Center";
$CodeML[24]="Nature Habitat";
$CodeML[25]="Big Nature Habitat";
$CodeML[26]="Terra Habitat";
$CodeML[27]="Big Terra Habitat";
$CodeML[28]="Flame Habitat";
$CodeML[29]="Big Flame Habitat";
$CodeML[30]="Sea Habitat";
$CodeML[31]="Big Sea Habitat";
$CodeML[32]="Ice Habitat";
$CodeML[33]="Big Ice Habitat";
$CodeML[34]="Electric Habitat";
$CodeML[35]="Big Electric Habitat";
$CodeML[36]="Metal Habitat";
$CodeML[37]="Big Metal Habitat";
$CodeML[38]="Dark Habitat";
$CodeML[39]="Big Dark Habitat";
$CodeML[40]="Legend Habitat";
$CodeML[45]="Rock";
$CodeML[46]="Medium Rock";
$CodeML[47]="Big Rock";
$CodeML[48]="Bush";
$CodeML[49]="Medium Tree";
$CodeML[50]="Big Tree";
$CodeML[54]="Terrain";
$CodeML[55]="Hatchery 2";
$CodeML[56]="Hatchery 3";
$CodeML[57]="Hatchery 4";
$CodeML[58]="Elf home";
$CodeML[59]="Fountain";
$CodeML[60]="Magic Mushroom";
$CodeML[61]="Glowy Flower";
$CodeML[62]="Cateye Flower";
$CodeML[63]="Blue Snail Plant";
$CodeML[64]="Purple Snail Plant";
$CodeML[65]="Chinese Arch";
$CodeML[66]="Little Dragon Statue";
$CodeML[67]="Dragon Statue";
$CodeML[68]="Old Pond";
$CodeML[69]="Willow Tree";
$CodeML[72]="Stone tile";
$CodeML[73]="Fancy tile";
$CodeML[74]="Luxury tile";
$CodeML[75]="Super tile";
$CodeML[76]="Huge Rock";
$CodeML[77]="Giant Rock";
$CodeML[79]="Dragon Market";
$CodeML[80]="Ultra Breeding Tree";
$CodeML[81]="Recruitment Tavern";
$CodeML[82]="Ying yang flag";
$CodeML[83]="Dragonhead flag";
$CodeML[84]="Dragon flag";
$CodeML[85]="Cloud flag";
$CodeML[86]="Egg flag";
$CodeML[87]="Tower flag";
$CodeML[88]="Dragon Hedge";
$CodeML[89]="Luxury Egg Statue";
$CodeML[90]="Kindergarten";
$CodeML[101]="Snail Wizard";
$CodeML[102]="Lost Baby Elf";
$CodeML[103]="Lost Baby Unicorn";
$CodeML[104]="Gold Tree";
$CodeML[105]="Play Social Empires";
$CodeML[106]="Play Social Wars";
$CodeML[110]="Pure Habitat";
$CodeML[111]="Pure Habitat";
$CodeML[112]="Pure Habitat";
$CodeML[113]="Pure Habitat";
$CodeML[114]="Pure Habitat";
$CodeML[115]="Pure Habitat";
$CodeML[116]="Pure Habitat";
$CodeML[117]="Pure Habitat";
$CodeML[118]="Pure Habitat";
$CodeML[119]="Dragon Club Statue";
$CodeML[120]="Breeding boost";
$CodeML[121]="Uncle Sam Dragon Wants You!";
$CodeML[122]="Merry Xmas Island";
$CodeML[124]="Xmas Tree";
$CodeML[125]="Santa Habitat";
$CodeML[126]="Treasure Hunt Island";
$CodeML[127]="Pirate Island";
$CodeML[128]="Deus Vault";
$CodeML[129]="Dinosaur Island";
$CodeML[130]="Dragonarium";
$CodeML[131]="Alien Island";
$CodeML[132]="Play Dragon City Mobile!";
$CodeML[133]="Dinosaur Island";
$CodeML[134]="Egyptian Habitat";
$CodeML[135]="egyptian Island";
$CodeML[136]="Central Island iphone 2";
$CodeML[137]="Ankh";
$CodeML[138]="Dungeon Base";
$CodeML[139]="Dungeon Habitat";
$CodeML[140]="Light Habitat";
$CodeML[141]="Big Light Habitat";
$CodeML[142]="War Habitat";
$CodeML[143]="Big War Habitat";
$CodeML[144]="Ancient Habitat";
$CodeML[145]="Big Ancient Habitat";
$CodeML[146]="Dungeon Island ";
$CodeML[147]="Dungeon key";
$CodeML[148]="Olympus Island ";
$CodeML[149]="Greek vase";
$CodeML[150]="Olympus Habitat";
$CodeML[151]="Play Monster Legends";
$CodeML[152]="Play DCa";
$CodeML[153]="Big Pure Habitat";
$CodeML[154]="Small Mistery Egg";
$CodeML[155]="Medium Mistery Egg";
$CodeML[156]="Large Mistery Egg";
$CodeML[157]="Super Mistery Egg";
$CodeML[158]="Viking Island ";
$CodeML[159]="Viking Habitat";
$CodeML[160]="Deus Breeding Nest";
$CodeML[161]="Castle Island";
$CodeML[162]="Deus Breeding Nest";
$CodeML[2000]="Zeppelin";
$CodeML[5000]="St Patrick";
$CodeML[5001]="April Fools'";
$CodeML[163]="Aztec Island ";
$CodeML[164]="Aztec Habitat";
$CodeML[165]="Egyptian Island";
$CodeML[168]="Halloween Island";
$CodeML[166]="Epic Temple";
$CodeML[167]="Wonders Temple";
$CodeML[170]="Christmas island";
$CodeML[169]="Wonderland Island";
$CodeML[171]="Dojo Island ";
$CodeML[172]="Dojo Habitat";
$CodeML[173]="Aloha Island ";
$CodeML[174]="Aloha Habitat";
$CodeML[175]="Breeding Sanctuary Ruins";
$CodeML[176]="Breeding Sanctuary";
$CodeML[177]="Breeding Sanctuary lvl 2";
$CodeML[178]="Breeding Sanctuary lvl 3";
$CodeML[179]="Breeding Sanctuary lvl 4";
$CodeML[180]="Breeding Sanctuary lvl 5";
$CodeML[181]="Anniversary Island";
$CodeML[5002]="Moon Dragon";
$CodeML[5003]="Poo Dragon";
$CodeML[5004]="Sylvan Dragon";
$CodeML[182]="Dungeon Habitat";
$CodeML[5005]="Space Dragon";
$CodeML[5006]="Hydra Dragon";
$CodeML[183]="Dino Habitat";
$CodeML[5007]="Diamond Dragon";
$CodeML[5008]="Unity Dragon";
$CodeML[184]="Wonder Habitat";
$CodeML[5009]="Angry Dragon";
$CodeML[5010]="Chimera";
$CodeML[186]="Tournament Island";
$CodeML[185]="World Cup Island ";
$CodeML[187]="World Cup Habitat";
$CodeML[5011]="Aztec Dragon";
$CodeML[5012]="Aurora Dragon";
$CodeML[5013]="Space Dragon";
$CodeML[190]="Iced Rock";
$CodeML[191]="Medium Iced Rock";
$CodeML[192]="Big Iced Rock";
$CodeML[193]="Huge Iced Rock";
$CodeML[194]="Giant Iced Rock";
$CodeML[197]="Breeding Sanctuary lvl 6";
$CodeML[198]="Breeding Sanctuary lvl 7";
$CodeML[199]="Breeding Sanctuary lvl 8";
$CodeML[200]="Hawaii Island ";
$CodeML[201]="Hawaii Habitat";
$CodeML[195]="Western Island";
$CodeML[196]="Western Habitat";
$CodeML[1000]="Nature Dragon";
$CodeML[1001]="Firebird Dragon";
$CodeML[1002]="Mercury Dragon";
$CodeML[1003]="Gummy Dragon";
$CodeML[1004]="Lantern Fish Dragon";
$CodeML[1005]="Tropical Dragon";
$CodeML[1006]="Zombie Dragon";
$CodeML[1007]="Petroleum Dragon";
$CodeML[1008]="Dandelion Dragon";
$CodeML[1009]="Jade Dragon";
$CodeML[1010]="Star Dragon";
$CodeML[1011]="Terra Dragon";
$CodeML[1012]="Flaming rock Dragon";
$CodeML[1013]="Armadillo Dragon";
$CodeML[1014]="Cloud Dragon";
$CodeML[1015]="Laser Dragon";
$CodeML[1016]="Mud Dragon";
$CodeML[1017]="Nenufar Dragon";
$CodeML[1018]="Hedgehog Dragon";
$CodeML[1019]="Icecube Dragon";
$CodeML[1020]="Flame Dragon";
$CodeML[1021]="Neon Dragon";
$CodeML[1022]="Pearl Dragon";
$CodeML[1023]="Cool Fire Dragon";
$CodeML[1024]="Medieval Dragon";
$CodeML[1025]="Penguin Dragon";
$CodeML[1026]="Ice Dragon";
$CodeML[1028]="Carnivore Plant Dragon";
$CodeML[1029]="Fluorescent Dragon";
$CodeML[1031]="Electric Dragon";
$CodeML[1032]="Battery Dragon";
$CodeML[1033]="Sea Dragon";
$CodeML[1039]="Metal Dragon";
$CodeML[1040]="Dark Dragon";
$CodeML[1041]="Legendary Dragon";
$CodeML[1042]="Vampire Dragon";
$CodeML[1043]="Alpine Dragon";
$CodeML[1044]="Poo Dragon";
$CodeML[1045]="Volcano Dragon";
$CodeML[1046]="Blizzard Dragon";
$CodeML[1047]="Rattlesnake Dragon";
$CodeML[1048]="Gold Dragon";
$CodeML[1049]="Soccer Dragon";
$CodeML[1050]="Platinum Dragon";
$CodeML[1051]="Pirate Dragon";
$CodeML[1052]="Crystal Dragon";
$CodeML[1053]="Wind Dragon";
$CodeML[1054]="Mirror Dragon";
$CodeML[1055]="Coral Dragon";
$CodeML[1056]="Spicy Dragon";
$CodeML[1057]="Waterfall Dragon";
$CodeML[1058]="Cactus Dragon";
$CodeML[1059]="Storm Dragon";
$CodeML[1060]="Ice Cream Dragon";
$CodeML[1061]="Mojito Dragon";
$CodeML[1062]="Chameleon Dragon";
$CodeML[1063]="Hot Metal Dragon";
$CodeML[1064]="Snowflake Dragon";
$CodeML[1065]="Seashell Dragon";
$CodeML[1066]="Moose Dragon";
$CodeML[1067]="Dragonfly Dragon";
$CodeML[1068]="Venom Dragon";
$CodeML[1069]="Steampunk Dragon";
$CodeML[1070]="Dark Fire Dragon";
$CodeML[1071]="Butterfly Dragon";
$CodeML[1072]="Robot Dragon";
$CodeML[1073]="Pure Terra Dragon";
$CodeML[1074]="Pure Flame Dragon";
$CodeML[1075]="Pure Sea Dragon";
$CodeML[1076]="Pure Nature Dragon";
$CodeML[1077]="Pure Electric Dragon";
$CodeML[1078]="Pure Ice Dragon";
$CodeML[1079]="Pure Metal Dragon";
$CodeML[1080]="Pure Dark Dragon";
$CodeML[1081]="Pure Dragon";
$CodeML[1082]="Paladin Dragon";
$CodeML[1083]="Fossil Dragon";
$CodeML[1084]="Seahorse Dragon";
$CodeML[1085]="Sky Dragon";
$CodeML[1104]="Ice&Fire Dragon";
$CodeML[1086]="Bat Dragon";
$CodeML[1087]="Aztec Dragon";
$CodeML[1088]="Chinese Dragon";
$CodeML[1089]="King Dragon";
$CodeML[1090]="Wizard Dragon";
$CodeML[1091]="Two headed Dragon";
$CodeML[1092]="Plankton Dragon";
$CodeML[1093]="Uncle Sam Dragon";
$CodeML[1094]="Evil Pumpkin Dragon";
$CodeML[1095]="Viking Dragon";
$CodeML[1096]="Jelly Dragon";
$CodeML[1097]="Quetzal Dragon";
$CodeML[1098]="Queen Dragon";
$CodeML[1099]="Thanksgiving Dragon";
$CodeML[1100]="Santa Dragon";
$CodeML[1101]="Ghost Dragon";
$CodeML[1102]="Deep Forest Dragon";
$CodeML[1103]="Ninja Dragon";
$CodeML[1105]="Aurora Dragon";
$CodeML[1106]="Music Dragon";
$CodeML[1107]="Block Dragon";
$CodeML[1108]="Butterfly Dragon";
$CodeML[1109]="Alien Dragon";
$CodeML[1110]="Great White Dragon";
$CodeML[1111]="Pharaoh Dragon";
$CodeML[1112]="Paradise Dragon";
$CodeML[1113]="Gaudi Dragon";
$CodeML[1114]="Cool Fire Dragon";
$CodeML[1115]="Octopus Dragon";
$CodeML[1116]="Jellyfish Dragon";
$CodeML[1117]="Carnival Dragon";
$CodeML[1118]="Love Dragon";
$CodeML[1119]="Dujur Dragon";
$CodeML[1120]="T-Rex Dragon";
$CodeML[1121]="Brontosaurus Dragon";
$CodeML[1122]="Hydra Dragon";
$CodeML[1123]="Mars Dragon";
$CodeML[1124]="Prisma Dragon";
$CodeML[1125]="Centipede Dragon";
$CodeML[1126]="Emerald Dragon";
$CodeML[1127]="St Patrick's Dragon";
$CodeML[1128]="Ruby Dragon";
$CodeML[1129]="Angry Dragon";
$CodeML[1130]="Lava Dragon";
$CodeML[1131]="Joker Dragon";
$CodeML[1132]="Chainmail Dragon";
$CodeML[1133]="Sphynx Dragon";
$CodeML[1134]="Mummy Dragon";
$CodeML[1135]="Diamond Dragon";
$CodeML[1136]="Demon Dragon";
$CodeML[1137]="Gargoyle Dragon";
$CodeML[1138]="Deep Red Dragon";
$CodeML[1139]="Blue Dragon";
$CodeML[1140]="Archangel Dragon";
$CodeML[1141]="Lightning Dragon";
$CodeML[1142]="Ancient Dragon";
$CodeML[1143]="Wurm Dragon";
$CodeML[1144]="Light Dragon Test";
$CodeML[1145]="War Dragon Test";
$CodeML[1146]="Eternal Dragon Test";
$CodeML[1147]="Glacial Dragon";
$CodeML[1148]="Cerberus Dragon";
$CodeML[1149]="Burning Dragon";
$CodeML[1150]="Treasure Dragon";
$CodeML[1151]="Granite Dragon";
$CodeML[1152]="Bone Dragon";
$CodeML[1153]="Wyvern Dragon";
$CodeML[1154]="Predator Dragon";
$CodeML[1155]="Poseidon Dragon";
$CodeML[1156]="Hades Dragon";
$CodeML[1157]="Atlas Dragon";
$CodeML[1158]="Justice Dragon";
$CodeML[1159]="Sun Dragon";
$CodeML[1160]="Gaia Dragon";
$CodeML[1161]="Luminsicent Dragon";
$CodeML[1162]="Rainbow Dragon";
$CodeML[1163]="War Dragon";
$CodeML[1164]="Juggernaut Dragon";
$CodeML[1165]="Colossal Dragon";
$CodeML[1166]="Red Woods Dragon";
$CodeML[1167]="Leviathan Dragon";
$CodeML[1168]="Panzer Dragon";
$CodeML[1169]="Nirobi";
$CodeML[1170]="Droconos";
$CodeML[1171]="Monstruous Dragon";
$CodeML[1172]="Ivory Dragon";
$CodeML[1173]="Moon Dragon";
$CodeML[1174]="Toxic Dragon";
$CodeML[1175]="Obsidian Dragon";
$CodeML[1176]="Meteor Dragon";
$CodeML[1177]="Hammer Dragon";
$CodeML[1178]="Tribal Dragon";
$CodeML[1179]="Origami Dragon";
$CodeML[1180]="Tiny Dragon";
$CodeML[1182]="Thor Dragon";
$CodeML[1183]="Loki Dragon";
$CodeML[1184]="Odin Dragon";
$CodeML[1187]="Photon Dragon";
$CodeML[1190]="Tesla Dragon";
$CodeML[1194]="White Knight Dragon";
$CodeML[1195]="Black Knight Dragon";
$CodeML[1196]="Thief Dragon";
$CodeML[1197]="Deus Pet Dragon";
$CodeML[1201]="Blue Fire Dragon";
$CodeML[1211]="Wrestler Dragon";
$CodeML[1224]="Eclipse Dragon";
$CodeML[1225]="Specter Dragon";
$CodeML[1227]="Crossfire Dragon";
$CodeML[1229]="Frozen Wind Dragon";
$CodeML[1231]="Aztec Warrior Dragon";
$CodeML[1232]="Aztec Priest Dragon";
$CodeML[1233]="Aztec Emperor Dragon";
$CodeML[1265]="Elements Dragon";
$CodeML[1267]="Giant Wings Dragon";
$CodeML[1268]="Amethyst Dragon";
$CodeML[1269]="Peace Dragon";
$CodeML[1283]="Columbus Dragon";
$CodeML[1284]="Bavarian Dragon";
$CodeML[1286]="Frankie Dragon";
$CodeML[1287]="Halloween Dragon";
$CodeML[1294]="Quartz Dragon";
$CodeML[1295]="Dark Elf Dragon";
$CodeML[1199]="Kryptonite Dragon";
$CodeML[1263]="Blind Dragon";
$CodeML[1202]="Hypno Dragon";
$CodeML[1226]="Cat Dragon";
$CodeML[1209]="Scrooge Dragon";
$CodeML[1212]="Clover Dragon";
$CodeML[1260]="Chobby Dragon";
$CodeML[1264]="Cookie Dragon";
$CodeML[1297]="Snow Man Dragon";
$CodeML[1298]="Xmas Elf Dragon";
$CodeML[1300]="Middle Earth Dragon";
$CodeML[1207]="Rockfeller Dragon";
$CodeML[1208]="King Solomon Dragon";
$CodeML[1210]="Robin Hood Dragon";
$CodeML[1214]="Poker Dragon";
$CodeML[1282]="Cosmo Dragon";
$CodeML[1288]="Animation Dragon";
$CodeML[1198]="Midas Dragon";
$CodeML[1223]="Chimera Dragon";
$CodeML[1292]="Hearts Queen Dragon";
$CodeML[1293]="Big Hat Dragon";
$CodeML[1274]="Sylvan Dragon";
$CodeML[1273]="Twister Dragon";
$CodeML[1271]="Heart Dragon";
$CodeML[1185]="Fallen Angel Dragon";
$CodeML[1186]="Cold Star Dragon";
$CodeML[1188]="Elfic Dragon";
$CodeML[1181]="Nightwind Dragon";
$CodeML[1193]="Dark Stone Dragon";
$CodeML[1301]="Shogun Dragon";
$CodeML[1302]="Martial Arts Dragon";
$CodeML[1291]="Oni Dragon";
$CodeML[1221]="Master Dragon";
$CodeML[1215]="Juggler Dragon";
$CodeML[1307]="Steam Dragon";
$CodeML[1308]="Howl Dragon";
$CodeML[1309]="Magnet Dragon";
$CodeML[1310]="Quake Dragon";
$CodeML[1311]="Apocalypse Dragon";
$CodeML[1312]="Millenium Dragon";
$CodeML[1313]="Forge Dragon";
$CodeML[1314]="Promethium Dragon";
$CodeML[1315]="Abyss Dragon";
$CodeML[1316]="Mirage Dragon";
$CodeML[1317]="Supersonic Dragon";
$CodeML[1191]="Kratus Dragon";
$CodeML[1189]="Zen Dragon";
$CodeML[1323]="Lightbeam Dragon";
$CodeML[1325]="Earth Day Dragon";
$CodeML[1321]="Easter Dragon";
$CodeML[1322]="Bookday Dragon";
$CodeML[1324]="Double Terra Dragon";
$CodeML[1326]="Double Nature Dragon";
$CodeML[1327]="Double Flame Dragon";
$CodeML[1328]="Double Electric Dragon";
$CodeML[1329]="Double Ice Dragon";
$CodeML[1330]="Double Metal Dragon";
$CodeML[1331]="Double Sea Dragon";
$CodeML[1334]="Space Dragon";
$CodeML[1319]="Basilisk Dragon";
$CodeML[1228]="Greenfluid Dragon";
$CodeML[1350]="Zodiac Taurus Dragon";
$CodeML[1318]="Core Dragon";
$CodeML[1320]="Dolphin Dragon";
$CodeML[1332]="Mother's Day Dragon";
$CodeML[1342]="Pterodactyl Dragon";
$CodeML[1339]="Anniversary Dragon";
$CodeML[1336]="Kaiju Dragon";
$CodeML[1337]="Acoustic Dragon";
$CodeML[1338]="Unity Dragon";
$CodeML[1341]="Cheshire Cat Dragon";
$CodeML[1352]="Zodiac Gemini Dragon";
$CodeML[1362]="O Rei Dragon";
$CodeML[1363]="Ney Dragon";
$CodeML[1364]="Pelusa Dragon";
$CodeML[1365]="Pulga Dragon";
$CodeML[1367]="Inesta Dragon";
$CodeML[1289]="Joseon Dragon";
$CodeML[1270]="Desert Dragon";
$CodeML[1204]="Troglodyte Dragon";
$CodeML[1217]="Speed Dragon";
$CodeML[1218]="Strong Dragon";
$CodeML[1266]="Manglar Dragon";
$CodeML[1192]="Saturn Dragon";
$CodeML[1203]="Stressed Dragon";
$CodeML[1366]="Orange Dragon";
$CodeML[1370]="Father's Day Dragon";
$CodeML[1296]="Sunset Dragon";
$CodeML[1369]="Zizou Dragon";
$CodeML[1353]="Zodiac Cancer Dragon";
$CodeML[1377]="Independence Day Dragon";
$CodeML[1368]="Ranoldo Dragon";
$CodeML[1376]="Korean Soccer Dragon";
$CodeML[1299]="Necromancer Dragon";
$CodeML[1371]="Rapunzel Dragon";
$CodeML[1373]="Adventure Dragon";
$CodeML[1304]="Hawaiian Dragon";
$CodeML[1305]="Surf Dragon";
$CodeML[1306]="Ukulele Dragon";
$CodeML[1378]="Genie Dragon";
$CodeML[1372]="Little Red Riding Hood Dragon";
$CodeML[1380]="Sorcerer Dragon";
$CodeML[1374]="Cyborg Dragon";
$CodeML[1381]="Hellgate Dragon";
$CodeML[1375]="Da Vinci Dragon";
$CodeML[1386]="Mozart Dragon";
$CodeML[1354]="Zodiac Leo Dragon";
$CodeML[1391]="Scientific Dragon";
$CodeML[1200]="Aquamarine Dragon";
$CodeML[1383]="Gold Rush Dragon";
$CodeML[1384]="Apache Dragon";
$CodeML[1385]="Sheriff Dragon";
?>
ml-code.php
<?php
$CodeML[1]="Hatchery";
$CodeML[2]="Hatchery 2";
$CodeML[3]="Hatchery 3";
$CodeML[4]="Hatchery 4";
$CodeML[5]="Fire Boost";
$CodeML[6]="Nature Boost";
$CodeML[7]="Earth Boost";
$CodeML[8]="Thunder Boost";
$CodeML[9]="Water Boost";
$CodeML[10]="Dark Boost";
$CodeML[11]="Magic Boost";
$CodeML[12]="Magic Temple";
$CodeML[13]="Noble Temple";
$CodeML[14]="Knight Temple";
$CodeML[15]="Master Temple";
$CodeML[16]="Light Boost";
$CodeML[17]="Legend Boost";
$CodeML[18]="Farm";
$CodeML[19]="Big Farm";
$CodeML[20]="Huge Farm";
$CodeML[21]="Breeding Mountain";
$CodeML[22]="Monster Arena";
$CodeML[23]="Bush";
$CodeML[24]="Medium Tree";
$CodeML[25]="Large Tree";
$CodeML[26]="Bush";
$CodeML[27]="Medium Tree";
$CodeML[28]="Large Tree";
$CodeML[29]="Tiny Rock";
$CodeML[30]="Small Rock";
$CodeML[31]="Medium Rock";
$CodeML[32]="Big Rock";
$CodeML[33]="Huge Rock";
$CodeML[34]="Tiny Rock";
$CodeML[35]="Small Rock";
$CodeML[36]="Medium Rock";
$CodeML[37]="Big Rock";
$CodeML[38]="Huge Rock";
$CodeML[39]="Tiny Rock";
$CodeML[40]="Small Rock";
$CodeML[41]="Medium Rock";
$CodeML[42]="Big Rock";
$CodeML[43]="Huge Rock";
$CodeML[44]="Terrain";
$CodeML[45]="Huge Stone";
$CodeML[46]="Giant Stone";
$CodeML[47]="Monster Market";
$CodeML[48]="Ultra Breeding Tree";
$CodeML[49]="Recruitment Tavern";
$CodeML[50]="Snail Wizard";
$CodeML[51]="Lost Baby Elf";
$CodeML[52]="Lost Baby Unicorn";
$CodeML[53]="Gold Tree";
$CodeML[62]="Special Habitat Small";
$CodeML[63]="Dark Habitat Big";
$CodeML[64]="Earth Habitat Big";
$CodeML[65]="Thunder Habitat Big";
$CodeML[66]="Fire Habitat Big";
$CodeML[67]="Magic Habitat Big";
$CodeML[68]="Water Habitat Big";
$CodeML[69]="Special Habitat Big";
$CodeML[70]="Light Habitat Big";
$CodeML[71]="Worker's Hut";
$CodeML[72]="Worker Drone";
$CodeML[81]="AirShip";
$CodeML[73]="Natural Habitat Big";
$CodeML[58]="Fire Habitat";
$CodeML[74]="Fire Habitat";
$CodeML[75]="Fire Habitat";
$CodeML[76]="Fire Habitat";
$CodeML[77]="Fire Habitat";
$CodeML[78]="Fire Habitat";
$CodeML[79]="Fire Habitat";
$CodeML[80]="Fire Habitat";
$CodeML[54]="Nature Habitat";
$CodeML[82]="Nature Habitat";
$CodeML[83]="Nature Habitat";
$CodeML[84]="Nature Habitat";
$CodeML[85]="Nature Habitat";
$CodeML[86]="Nature Habitat";
$CodeML[87]="Nature Habitat";
$CodeML[88]="Nature Habitat";
$CodeML[56]="Earth Habitat";
$CodeML[89]="Earth Habitat";
$CodeML[90]="Earth Habitat";
$CodeML[91]="Earth Habitat";
$CodeML[92]="Earth Habitat";
$CodeML[93]="Earth Habitat";
$CodeML[94]="Earth Habitat";
$CodeML[95]="Earth Habitat";
$CodeML[57]="Thunder Habitat";
$CodeML[96]="Thunder Habitat";
$CodeML[97]="Thunder Habitat";
$CodeML[98]="Thunder Habitat";
$CodeML[99]="Thunder Habitat";
$CodeML[100]="Thunder Habitat";
$CodeML[101]="Thunder Habitat";
$CodeML[102]="Thunder Habitat";
$CodeML[61]="Water Habitat";
$CodeML[103]="Water Habitat";
$CodeML[104]="Water Habitat";
$CodeML[105]="Water Habitat";
$CodeML[106]="Water Habitat";
$CodeML[107]="Water Habitat";
$CodeML[108]="Water Habitat";
$CodeML[109]="Water Habitat";
$CodeML[55]="Dark Habitat";
$CodeML[110]="Dark Habitat";
$CodeML[111]="Dark Habitat";
$CodeML[112]="Dark Habitat";
$CodeML[113]="Dark Habitat";
$CodeML[114]="Dark Habitat";
$CodeML[115]="Dark Habitat";
$CodeML[116]="Dark Habitat";
$CodeML[59]="Magic Habitat";
$CodeML[117]="Magic Habitat";
$CodeML[118]="Magic Habitat";
$CodeML[119]="Magic Habitat";
$CodeML[120]="Magic Habitat";
$CodeML[121]="Magic Habitat";
$CodeML[122]="Magic Habitat";
$CodeML[123]="Magic Habitat";
$CodeML[60]="Light Habitat";
$CodeML[124]="Light Habitat";
$CodeML[125]="Light Habitat";
$CodeML[126]="Light Habitat";
$CodeML[127]="Light Habitat";
$CodeML[128]="Light Habitat";
$CodeML[129]="Light Habitat";
$CodeML[130]="Light Habitat";
$CodeML[131]="Cobble";
$CodeML[132]="Paving";
$CodeML[133]="Crystal Paving";
$CodeML[134]="Gold Paving";
$CodeML[135]="Fungus";
$CodeML[136]="Willow Stool";
$CodeML[137]="Tri Blossom";
$CodeML[138]="Lush Plant";
$CodeML[139]="Monster Flag";
$CodeML[140]="Monster Flag";
$CodeML[141]="Monster Flag";
$CodeML[142]="Monster Flag";
$CodeML[143]="Monster Statue";
$CodeML[144]="Petal Cone";
$CodeML[145]="Rubble";
$CodeML[146]="Rubble";
$CodeML[147]="Fallen meteorite";
$CodeML[148]="Relax Pond";
$CodeML[149]="Runes Building";
$CodeML[150]="Fallen meteorite";
$CodeML[208]="Legendary Habitat";
$CodeML[209]="Buy Expansion";
$CodeML[210]="Fire Habitat Social";
$CodeML[220]="AirShip";
$CodeML[221]="AirShip";
$CodeML[230]="Temple of Fire";
$CodeML[231]="Temple of Fire";
$CodeML[232]="Temple of Fire";
$CodeML[233]="Temple of Fire";
$CodeML[234]="Temple of Fire";
$CodeML[235]="Temple of Fire";
$CodeML[236]="Temple of Fire";
$CodeML[237]="Temple of Fire";
$CodeML[238]="Temple of Nature";
$CodeML[239]="Temple of Nature";
$CodeML[240]="Temple of Nature";
$CodeML[241]="Temple of Nature";
$CodeML[242]="Temple of Nature";
$CodeML[243]="Temple of Nature";
$CodeML[244]="Temple of Nature";
$CodeML[245]="Temple of Nature";
$CodeML[246]="Temple of Earth";
$CodeML[247]="Temple of Earth";
$CodeML[248]="Temple of Earth";
$CodeML[249]="Temple of Earth";
$CodeML[250]="Temple of Earth";
$CodeML[251]="Temple of Earth";
$CodeML[252]="Temple of Earth";
$CodeML[253]="Temple of Earth";
$CodeML[254]="Temple of Thunder";
$CodeML[255]="Temple of Thunder";
$CodeML[256]="Temple of Thunder";
$CodeML[257]="Temple of Thunder";
$CodeML[258]="Temple of Thunder";
$CodeML[259]="Temple of Thunder";
$CodeML[260]="Temple of Thunder";
$CodeML[261]="Temple of Thunder";
$CodeML[262]="Temple of Water";
$CodeML[263]="Temple of Water";
$CodeML[264]="Temple of Water";
$CodeML[265]="Temple of Water";
$CodeML[266]="Temple of Water";
$CodeML[267]="Temple of Water";
$CodeML[268]="Temple of Water";
$CodeML[269]="Temple of Water";
$CodeML[270]="Temple of Dark";
$CodeML[271]="Temple of Dark";
$CodeML[272]="Temple of Dark";
$CodeML[273]="Temple of Dark";
$CodeML[274]="Temple of Dark";
$CodeML[275]="Temple of Dark";
$CodeML[276]="Temple of Dark";
$CodeML[277]="Temple of Dark";
$CodeML[278]="Temple of Magic";
$CodeML[279]="Temple of Magic";
$CodeML[280]="Temple of Magic";
$CodeML[281]="Temple of Magic";
$CodeML[282]="Temple of Magic";
$CodeML[283]="Temple of Magic";
$CodeML[284]="Temple of Magic";
$CodeML[285]="Temple of Magic";
$CodeML[286]="Temple of Light";
$CodeML[287]="Temple of Light";
$CodeML[288]="Temple of Light";
$CodeML[289]="Temple of Light";
$CodeML[290]="Temple of Light";
$CodeML[291]="Temple of Light";
$CodeML[292]="Temple of Light";
$CodeML[293]="Temple of Light";
$CodeML[2000]="Zeppelin";
$CodeML[1001]="Fire Lion";
$CodeML[1002]="Rockilla";
$CodeML[1003]="Turtle";
$CodeML[1004]="Panda";
$CodeML[1005]="Thunder Eagle";
$CodeML[1006]="Light Spirit";
$CodeML[1007]="Tyrannoking";
$CodeML[1008]="Genie";
$CodeML[1014]="Firekong";
$CodeML[1015]="Sealion";
$CodeML[1016]="Firanda";
$CodeML[1017]="Thundenix";
$CodeML[1018]="Scorchpeg";
$CodeML[1019]="Firetaur";
$CodeML[1020]="Djinn";
$CodeML[1021]="Freettle";
$CodeML[1022]="Musu";
$CodeML[1023]="Tarzape";
$CodeML[1024]="Electrex";
$CodeML[1025]="Light Sphinx";
$CodeML[1026]="Obsidia";
$CodeML[1027]="Terracrank";
$CodeML[1028]="Vapwhirl";
$CodeML[1029]="Gastosquish";
$CodeML[1030]="Sheluke";
$CodeML[1031]="Shock Turtle";
$CodeML[1032]="Blesstle";
$CodeML[1033]="Fliploch";
$CodeML[1034]="Dolphchamp";
$CodeML[1035]="Pandaken";
$CodeML[1036]="Rarawr";
$CodeML[1037]="Bumblesnout";
$CodeML[1038]="Rhynex";
$CodeML[1039]="Vixsun";
$CodeML[1040]="Dendrosaur";
$CodeML[1041]="Pandalf";
$CodeML[1042]="Gigram";
$CodeML[1043]="Bonbon";
$CodeML[1044]="Koopigg";
$CodeML[1045]="Rabidex";
$CodeML[1046]="Pelitwirl";
$CodeML[1047]="Terror Dactyl";
$CodeML[1048]="Raydex";
$CodeML[1049]="Skipples";
$CodeML[1050]="Goldcore";
$CodeML[1051]="Raane";
$CodeML[1052]="Rudicius";
$CodeML[1053]="Pulseprism";
$CodeML[1054]="Fayemelina";
$CodeML[1055]="Zim";
$CodeML[1056]="Flickie";
$CodeML[1057]="Beefcake";
$CodeML[1058]="Razfeesh";
$CodeML[1059]="Utochomp";
$CodeML[1060]="Shanky";
$CodeML[1061]="Succuba";
$CodeML[1062]="Haze";
$CodeML[1063]="Pyrook";
$CodeML[1064]="Duchess";
$CodeML[1065]="Octocrush";
$CodeML[1066]="Bloomskips";
$CodeML[1067]="Sparkwedge";
$CodeML[1068]="Flawless";
$CodeML[1069]="Giragast";
$CodeML[1101]="Firesaur";
$CodeML[1103]="Mersnake";
$CodeML[1104]="Treezard";
$CodeML[1116]="Greenasaur";
$CodeML[2001]="Arch Knight";
$CodeML[2002]="Vadamagma";
$CodeML[2003]="Nemestrinus";
$CodeML[2004]="Rockantium";
$CodeML[2005]="Thorder";
$CodeML[2006]="Lord of the Atlantis";
$CodeML[2007]="Nebotus";
$CodeML[2008]="Goldfield";
$CodeML[2009]="White Walker";
$CodeML[2010]="Irockman";
$CodeML[2011]="Worker Hulk";
$CodeML[2012]="Komocat";
$CodeML[2013]="Darkzgul";
$CodeML[2014]="Darknubis";
$CodeML[2015]="Fartgoyle";
$CodeML[2016]="Esthirel";
$CodeML[2017]="Erpham";
$CodeML[2018]="Tartarus";
$CodeML[2019]="Drop Elemental";
$CodeML[2020]="Wolfkami";
$CodeML[2021]="Dragonian Beast";
$CodeML[2022]="Lostyghost";
$CodeML[2023]="Tao Tao";
$CodeML[2024]="Panda Claus";
$CodeML[2025]="Sasquach";
$CodeML[2026]="Rodolph";
$CodeML[2027]="Firus";
$CodeML[2028]="Kimmel's Gift";
$CodeML[2029]="Cupid";
$CodeML[2030]="Rosanha";
$CodeML[2031]="Teddy Fear";
$CodeML[2032]="Firelequin";
$CodeML[2033]="Lagerchaun";
$CodeML[2034]="Griffex";
$CodeML[5000]="Fire Puppy";
$CodeML[5001]="Turtle";
$CodeML[5002]="Dark Minion";
$CodeML[5003]="Thunder Scout";
$CodeML[5004]="Defender of Earth";
$CodeML[5005]="Boss Firekong";
$CodeML[5006]="Wild Pandaken";
$CodeML[5007]="QA Monkey";
$CodeML[5008]="Dark Beast";
$CodeML[5009]="Boss Terror Dactyl";
$CodeML[5010]="Wild Koopigg";
$CodeML[5011]="Wild Electrex";
$CodeML[5012]="Boss Terracrank";
$CodeML[5013]="Wild Gastosquish";
$CodeML[5014]="Boss Bumblesnout";
$CodeML[5015]="Wild Pandalf";
$CodeML[5016]="Boss Dolphchamp";
$CodeML[5017]="Badak Tanah";
$CodeML[5018]="Boss Dendrosaur";
$CodeML[5019]="Wild Beefcake";
$CodeML[5020]="Boss Fayemelina";
$CodeML[5021]="Wild Zim";
$CodeML[5022]="Boss Goldcore";
$CodeML[5023]="Wild Razfeesh";
$CodeML[5024]="Boss Scorchpeg";
$CodeML[5025]="Wild Rabidex";
$CodeML[5026]="Boss Duchess";
$CodeML[5027]="Pandaken - Legendary!";
$CodeML[5028]="Boss Arch Knight";
$CodeML[5029]="Boss Vadamagma";
$CodeML[5030]="Boss Nemestrinus";
$CodeML[5031]="Boss Rockantium";
$CodeML[5032]="Boss Thorder";
$CodeML[5033]="Boss Merfolk King";
$CodeML[5034]="Boss Nebotus";
$CodeML[5035]="Boss Goldfield";
$CodeML[5036]="Wild Forest Beast";
$CodeML[5037]="Bloomskips";
$CodeML[5038]="Boss Drop Elemental";
$CodeML[5039]="Dark Minion ";
$CodeML[5040]="Dark Minion";
$CodeML[5041]="Dark Master";
$CodeML[5042]="Pandalf Mentor";
?>