Hi all,
I don't know if this is usable because I believe SWFs should be cracked? But here is a small script which basiclly reads your "figuremap.xml" and downloads all the necassery .swf files in the current directory.
These files should go in the core of your swfs in order to get it to work. With this script I have been aible to download 361 figures files.
Make sure figuremap.xml is in the same directory as the script is for it to work.. Also the script is based on the linux shell. (command: wget is not standard installed on windows)
Enjoy if you can use it, if not Sorry =D.
PHP Code:
<?php
// simple figures downloader from another server. - dont forget ending slash.
$url2download = "https://images-eussl.habbo.com/gordon/RELEASE63-201406132306-746259040/";
// start the lookup.
$handle = fopen("figuremap.xml", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
if (preg_match('/lib id=/', $line) && preg_match('/id="(.|\n*)+"/', $line, $matches)) {
$matches = explode(" ", $matches[0]);
$result = $matches[0];
$result = str_replace("id=", "", $result);
$result = str_replace("\"", "", $result);
$filename = $result . ".swf";
echo "Beginning download of " . $result . ".swf from Habbo Server.\n";
exec("wget --no-check-certificate ".$url2download . $filename . " -O ./" . $filename);
}
}
} else {
// error opening the file.
echo "error opening the file. check your path!";
}
fclose($handle);
?>
NOTE!
These are not cracked yet. But you could also download the files from another retro which are cracked.
Another note for the teachers in the section:
This is not a help thread, I also do not ask for your feedback on the script. So there is no reason to post what I should do or what I should not do. kk ty! :)