Releases Latest Topicshttps://archive.solero.me/forum/14-releases/Releases Latest TopicsenHoudinihttps://archive.solero.me/topic/159-houdini/ cpp3mDg.png

Greetings, everyone! I am pleased to announce the release of Houdini, a Club Penguin private server written in Python for the AS2 protocol. As with all of my large projects, Houdini will be hosted on GitHub and will be completely open for everyone to use and contribute to.

You can find the repository to Houdini here.

Aside from the standard Club Penguin stuff, Houdini also has the following features:

  • Hot-reloading; modules are safely reloaded at run-time if a change is detected. Meaning you don't need to restart the server after editing any handler.
  • ORM based database transactions via SQLAlchemy.
  • Bcrypt password hashing.

A lot more is planned for Houdini, including multiplayer games (such as Card Jitsu and Find Four), as well as throttling and plugin systems.

For the time being, report any bugs you find through the issue-tracker on the repository or to me on Discord.

Have a nice day!

]]>
159Sun, 22 Oct 2017 15:51:34 +0000
PE2 Sourcehttps://archive.solero.me/topic/166-pe2-source/ hey guys i wanted to inform here, that there is PE2 source available to download idk whether this is right place to post

 

there is link for tutorial http://forum.ragezone.com/f858/tutorial-setup-club-penguin-private-894970/ 

there is link for download http://www.mediafire.com/?wbhux49ntdfd42d 😄

if you're interested about seeing private servers check out my website here

> https://goo.gl/Pt4rgq

Spoiler

Yo. download there

there is link for download http://www.mediafire.com/?wbhux49ntdfd42d 

 

 

]]>
166Thu, 21 Dec 2017 18:38:23 +0000
Timeline - Stable AS3 CPPS Serverhttps://archive.solero.me/topic/167-timeline-stable-as3-cpps-server/ Times-0/Timeline

A powerful AS3 CPPS Server emulator written in Python using Twisted!

 

GRAB THE LATEST BUILD: Timeline.zip 

Prerequisites:

Any of the above Python modules can be installed as follows:

If you are using only 1 version of Python

python -m pip install module_name

 

If you are using multiple versions of Python (2 and 3 together)
 

py -2 -m pip install moule_name


 

SETUP [If you are using it in default localhost, skip these]

 

Spoiler

If you don't use default configurations for your MySQL or Redis server or CPPS ports/hostnames, you can change it as follows. Open Start.py in a text editor (with write privileges)

To change MySQL details:

Find the line


DBMS = DBM(user = "root", passd = "", db = "times-cp")


Edit it to match yours, save your file

 

To change Redis-server, open Timeline/Server/Redis.py with a text editor

Search for the following line


redis.Connection(host = '127.0.0.1', reconnect = True).addCallback(self.initPenguins)


Replace it to match yours, and save it

 

To add new servers, open Start.py

Find


Gravity.run('127.0.0.1', 9875)


Below that you can create your server similar to the following


ExampleLoginServer = Engine(Penguin, Constants.LOGIN_SERVER, <SERVER_ID>, "Name of login server")
ExampleLoginServer.run('host to listen on', <login_port>)

ExampleWorldServer = Engine(Penguin, Constants.WORLD_SERVER, <SERVER_ID>, "Example World Server")
ExampleWorldServer.run("<Host to run on>", <ExampleWorld_server_port>)

 

 

 

SETUP DATABASE (Necessary)

If you haven't setup database for timeline before, you need to do this before starting the server.

Open your mysql client (eg, PHPMyAdmin), create a new database namely times-cp, open that table click import, select file as database.sql, import it. You are good to go now.

USAGE

After all being set-up, all you have to do is run the server.

Below are examples of how to run the server from a terminal

cd path/to/timeline 
---IF YOU HAVE ONLY ONE VERSION OF PYTHON INSTALLED--- 
python Start.py 
----- 
---IF YOU HAVE MULTIPLE VERSIONS OF PYTHON--- 
py -2 Start.py 
-----

 

]]>
167Sat, 23 Dec 2017 04:06:37 +0000
<![CDATA[World selection skipping & improving login authentication]]>https://archive.solero.me/topic/111-world-selection-skipping-improving-login-authentication/ Hello everyone,

Many Club Penguin Private Servers make use of only one world server, this is generally a good thing as it keeps all of your players together and helps encourage social interaction between players in the game. Club Penguin has always given the players the option to choose which world server they want to join, but if there is only one world server, what's the point in providing users the option?

I wrote some code which will give you the ability to remove the world selection screen from the game entirely, this not only makes login faster thanks to not having to ask the user for input, but also because we no longer need a login server at all, we just authenticate with the world server and call it a day.

Here is the actionscript code for the dependency shockwave flash file:

import com.clubpenguin.util.*;
import com.clubpenguin.crypto.*;
 
var SHELL = _global.getCurrentShell();
var AIRTOWER = _global.getCurrentAirtower();
 
AIRTOWER.connectToLogin = function(in_username, in_pass, login_response) {
    if (!AIRTOWER.is_logged_in) {
        AIRTOWER.on_login_response = login_response;
        AIRTOWER.username = in_username;
        AIRTOWER.password = in_pass;
        AIRTOWER.server.onConnection = Delegate.create(AIRTOWER, AIRTOWER.handleLoginConnection);
        AIRTOWER.server.onExtensionResponse = Delegate.create(AIRTOWER, AIRTOWER.onAirtowerResponse);
        AIRTOWER.server.debug = true;
        AIRTOWER.addListener(AIRTOWER.HANDLE_LOGIN, AIRTOWER.handleOnLogin);
        var _local1 = SHELL.getWorldCrumbs();
        var _local2;
        var _local3;
        for (_local2 in _local1) {
           _local3 = _local1[_local2];
           break;
        }
        SHELL.world_id_holder = _local3.id;
        AIRTOWER.server.connect(_local3.ip, _local3.port);
    } else {
        AIRTOWER.shell.$e("connectToLogin() -> Your already logged in! Cant login again");
    }
}
 
AIRTOWER.handleLoginConnection = function(success) {
    if(success) {
        AIRTOWER.login();
    } else {
        AIRTOWER.on_login_response(false);
    }
}
 
AIRTOWER.login = function() {
    AIRTOWER.server.login("w1", AIRTOWER.username, AIRTOWER.getLoginHash());
}
 
AIRTOWER.handleOnLogin = function(obj) {
    AIRTOWER.removeListener(AIRTOWER.HANDLE_LOGIN, AIRTOWER.handleOnLogin);
    AIRTOWER.shell.setMyPlayerId(obj[1]);
    AIRTOWER.playerId = obj[1];
    AIRTOWER.login_key = obj[2];
    AIRTOWER.on_login_response(true);
    AIRTOWER.is_logged_in = true;
    SHELL.gotoState(SHELL.PLAY_STATE);
}
 
SHELL.connectToWorld = function() {
    var _local1 = SHELL.getWorldById(SHELL.world_id_holder);
    SHELL.showLoading((SHELL.getLocalizedString("Joining") + " ") + _local1.name);
    AIRTOWER.joinWorld();
}
 
AIRTOWER.handleJoinWorld = function(obj) {
    AIRTOWER.removeListener(AIRTOWER.JOIN_WORLD, AIRTOWER.handleJoinWorld);
    var _local6 = Boolean(Number(obj[1]));
    var _local3 = Boolean(Number(obj[2]));
    var _local5 = Boolean(Number(obj[3]));
    var _local4 = Boolean(Number(obj[4]));
    AIRTOWER.on_world_response(true, _local6, _local3, _local5, _local4);
    AIRTOWER.on_world_response = undefined;
}
 
AIRTOWER.joinWorld = function() {
    AIRTOWER.server.onConnectionLost = Delegate.create(AIRTOWER, AIRTOWER.handleLostConnection);
    var _local2 = new Array();
    _local2.push(AIRTOWER.playerId);
    _local2.push(AIRTOWER.login_key);
    _local2.push(AIRTOWER.shell.getLanguageAbbriviation());
    if (AIRTOWER.isRedemption) {
        AIRTOWER.addListener(AIRTOWER.REDEMPTION_JOIN_WORLD, handleJoinRedemption, AIRTOWER);
        AIRTOWER.send(AIRTOWER.REDEMPTION, AIRTOWER.REDEMPTION_JOIN_WORLD, _local2, "str", -1);
        return(undefined);
    }
    AIRTOWER.on_world_response = SHELL.connectToWorldResponse;
    AIRTOWER.addListener(AIRTOWER.JOIN_WORLD, AIRTOWER.handleJoinWorld);
    AIRTOWER.send(AIRTOWER.PLAY_EXT, (AIRTOWER.NAVIGATION + "#") + AIRTOWER.JOIN_WORLD, _local2, "str", -1);
}
 
AIRTOWER.getLoginHash = function() {
    return SHA256.hash(AIRTOWER.password);
}

Now, since the way that the client authenticates is slightly different, your server will need to be modified to support it. In this case, I actually made mine use SHA256 hashing (thanks @Kevin) instead of MD5. There is also now no real need for a random key. Note you do not need to use SHA256 with this, it was just what I decided I wanted to use, if you want to go back to MD5, or use another authentication method entirely, you can do so by overriding 'AIRTOWER.getLoginHash'.

With this code the client connects directly to the first localized world server in the world crumbs, performs the handshake, hashes the password and authenticates, then proceeds to get the players information.

This is how the world server auth works:

recv: <msg t='sys'><body action='verChk' r='0'><ver v='153' /></body></msg>
send:  <msg t='sys'><body action='apiOK' r='0'></body></msg>
recv: <msg t='sys'><body action='login' r='0'><login z='w1'><nick><![CDATA[Ben_]]></nick><pword><![CDATA[SHA256]]></pword></login></body></msg>

A couple of actionscript classes are required for this code to export, everything is zipped below, you'll also find a pre-exported version in there if you are happy to use mine.

The SWF file goes in /play/v2/client/ of your media server, please add it to dependencies.json too:

{
	
	boot: [
		{
			id: 'airtower',
			title: 'Communication'
		},
		{
			id: 'sentry',
			title: 'Communication'
		}
	],
	
	login: [
		{
			id: 'cookies',
			title: 'Login Screen'
		},
		{
			id: 'login',
			title: 'Login Screen'
		}
	],
	
	join: [
		{
			id: 'engine',
			title: 'Engine'
		},
		{
			id: 'interface',
			title: 'Interface'
		},
		{
			id: 'gridview',
			title: 'Gridview'
		},
		{
			id: 'mail',
			title: 'Mail'
		},
		{
			id: 'book',
			title: 'Mail'
		},
		{
			id: 'stampbook',
			title: 'StampBook'
		}
	],
	
	create: [
		{
			id: 'create',
			title: 'Create Penguin'
		}
	],
	
	merch: [
		{
			id: 'app',
			folder: 'merch/',
			title: 'Communication'
		}
	]
	
}

End result:

DXm.gif

  • Please suggest improvements, specifically ways to improve the security, I'm sure this is pretty half-assed.
  • Please ask if you're having troubles getting the server sided stuff to work.
  • Works on only legacy private servers, not the new client, but could be easily ported. I'll do it if I ever find the time.

 

cookies.zip

]]>
111Sun, 18 Jun 2017 15:32:41 +0000
Working Music Jam 2016 [AS3]https://archive.solero.me/topic/100-working-music-jam-2016-as3/ This is Music Jam 2016, with working quests. It's for AS3. All you have to do is put the files in the correct locations in your mediaserver.
If there are any missing rooms you can download them from here, we had to modify a few files in order to get the Music Jam functional on CP Reborn.

Hopefully it helps a few.

Preview:

Music Jam 2016 interface page 1Music Jam 2016 interface page 2Music Jam 2016 login 1Music Jam 2016 task 2 congratsMusic Jam 2016 task 1 congrats 1

 

Download Here

]]>
100Sat, 17 Jun 2017 06:32:31 +0000
Icerink - Club Penguin Mediahttps://archive.solero.me/topic/112-icerink-club-penguin-media/ Official thread for Icer.ink - Club Penguin Media Archive

Hello everyone,

I have recently taken it upon myself to produce a clone of Club Penguin's client media.

I built this by parsing JSON and XML configuration files, but also by making use of other techniques such as basic web scraping and by auditing a lot of the action script code inside the client files.

The end result is around 4GB of game media (uncompressed).

The root directories are named after their respective web domain.

Browse the directories

Download media (4.4GB)

]]>
112Sun, 18 Jun 2017 15:38:38 +0000
Club Penguin Archives - Full Mirror Websitehttps://archive.solero.me/topic/155-club-penguin-archives-full-mirror-website/ For those who rely on Club Penguin Archives for their CPPS content, many of you know that CP Archives usually goes down every few weeks for what may be weeks at a time. So, I took it upon myself to take a full dump of the Club Penguin Archives website and put up a mirror website for the community to use when the website is down. The mirror website is also significantly faster than the original website, if you prefer to use the mirror site over the original.

All hyperlinks for SWF files and wiki articles are working on my mirror website so it will not redirect you to CP Archives when the site is down.

59adf00d31029_ScreenShot2017-09-04at8_22_50PM.thumb.png.bfdc1fd2f89c25fa9084d6728dd3fdf1.png

You can access the Club Penguin Archives mirror here: 
https://archives.cpps.media

Enjoy!

]]>
155Tue, 05 Sep 2017 00:29:41 +0000
The Ultimate CPPS Source Archive.rar (1,1G)https://archive.solero.me/topic/71-the-ultimate-cpps-source-archiverar-11g/ Someone gave this to me. It has a ton of CPPS sources.

Download:

https://drive.google.com/uc?id=0B7VzJNrahSLsclM5dmNZaXd6YlE&export=download

]]>
71Tue, 13 Jun 2017 10:53:10 +0000
CPbb - A modern Club Penguin themed MyBB themehttps://archive.solero.me/topic/148-cpbb-a-modern-club-penguin-themed-mybb-theme/ CPbb is a simple lightweight Club Penguin theme for use on MyBB software, it'll help you to get a modern CP forum up and running.

f9cSGLTrTA_ckOm6tOwqYg.png

 

The theme itself is obviously based on the more modern Club Penguin website, I use it on Club Penguin Reborn forums (forums.cpreborn.com).

Version: 1.0

Requirements:

Latest version of MyBB (download at mybb.com)

How to install:

-Download the rar file attachment below and extract it

-Once you have MyBB succesfully installed go to "Admin CP"

- Click on Template & Styles

- Import a Theme

- Under "Local File" choose the file you extracted it should be called clubpenguin-theme.xml

- Import Theme

- Click on "Themes"

- Nex tto clubpenugin click on "Options"

- Set as Default and then click Force on Users

DONE! SUCCESFULLY installed.

The css, js and images are hosted on my website, if you'd like them I'd recommend you to scrape them from my website - download the css individually and modify some links to images within them to match your needs and then upload the modified css to your website and go to templates under templates & styles and then click on "clubpenguin Templates" and under header templates if you click on header you'll be able to change the url of the css.

There is no dedicated support for this theme but you can leave issues and suggestions below. 

Please do not re-upload this theme elsewhere, use the same download link as when I push updates the link will be the same and I don't want people using outdated versions in the near future.

 

Download here

]]>
148Sat, 29 Jul 2017 18:42:17 +0000
Club Penguin client toolhttps://archive.solero.me/topic/110-club-penguin-client-tool/ Hey everyone,

I frequently see people struggling with disableing the domain locking, logging services, and client checks embedded into Club Penguin client files to prevent the files being used outside the http://clubpenguin.com domain.

I have written a tool in Python to help aid the process of disabling these functions, whilst maintaining the crossdomain policies within the files which actually act as a security feature.

import zlib
import logging
import argparse
from os.path import isfile, isdir, splitext, join, exists, dirname
from os import walk, makedirs
from glob import glob

if __name__ == "__main__":
	logger = logging.getLogger(__name__)
	logging.basicConfig(level=logging.INFO)
	parser = argparse.ArgumentParser(description="Club Penguin client tool")
	parser.add_argument("path", type=str, nargs="*", help="Path(s) to files or directories")
	parser.add_argument("-d", "--domain", type=str, help="The domain to use (ex. clubpenguin.com)")
	parser.add_argument("-r", "--recursive", action='store_true', help="Enables recursive mode")
	parser.add_argument("-o", "--output", type=str, help="Output directory")
	parser.add_argument("-D", "--dump", action='store_true', help="Dump decompressed FWS data")
	arguments = parser.parse_args()

	logger.info("This program can overwrite files on the disk, make sure to make backups before" +
				" running this script or make sure the output flag is enabled!")

	for path in arguments.path:
		if isfile(path):
			logger.info("Found \"%s\"", path)
			paths = [path]
		elif isdir(path):
			if not arguments.recursive:
				logger.warning("\"%s\" is a directory but recursion is disabled! skipping...", path)
				continue
			else:
				paths = [y for x in walk(path) for y in glob(join(x[0], '*.swf'))]

		for file in paths:
			logger.info("Found \"%s\"", file)
			filename, file_extension = splitext(file)
			if file_extension != ".swf":
				logger.warning("\"%s\" is not an SWF file! skipping...", path)
				continue

			logger.info("Opening \"%s\"", file)
			raw = open(file, "rb")
			signature = raw.read(3)
			logger.info("Reading file signature for \"%s\"", file)

			if signature != b"CWS":
				logger.warning("File has invalid signature, file sig should be 0x43 0x57 0x43(\"CWS\")")
				continue

			header = raw.read(5)
			data = raw.read()
			logger.info("Read %d bytes from \"%s\"", data.__sizeof__(), file)
			logger.info("Decompressing")
			decompressed_data = zlib.decompress(data)
			original_data = decompressed_data

			if b'\x00clubpenguin\x00boot\x00BootLoader' in decompressed_data:
				logger.info("Found a BootLoader, cracking client checks...")
				s = b'\x00logEvents\x00boot\x00BootL0ader'
				decompressed_data = decompressed_data.replace(b'\x00logEvents\x00boot\x00BootLoader', s)
				s = b'clubpenguin.c0m'
				decompressed_data = decompressed_data.replace(b'clubpenguin.com', s)

			if b'clubpenguin.com' in decompressed_data:
				logger.info("Found clubpenguin.com")
				s = bytes(arguments.domain.encode())
				decompressed_data = decompressed_data.replace(b'clubpenguin.com', s)

			if b'disney.com' in decompressed_data:
				logger.info("Found disney.com")
				s = bytes(arguments.domain.encode())
				decompressed_data = decompressed_data.replace(b'disney.com', s)

			if decompressed_data == original_data:
				logger.warning("No changes were made to the data!")
				continue

			logger.info("Re-compressing data and appending file signature and header")
			compressed = signature + header + zlib.compress(decompressed_data)

			if arguments.output:
				file = join(arguments.output, file)

			if not exists(dirname(file)):
				makedirs(dirname(file), exist_ok=True)

			if arguments.dump:
				dump = open(file + ".fws", "w")
				dump.write(str(decompressed_data))
				dump.close()
				logger.info("Copied dump to \"%s\"", file + ".fws")

			logger.info("Writing data to \"%s\"", file)
			output = open(file, "wb")
			output.write(compressed)
			output.close()
			raw.close()

	logger.info("Finished. Goodbye!")

If you know Python a little then you will probably be able to understand how the script works rather quickly, as it is rather simple. It decompresses the SWF files to expose some of the actionscript constants within the file (no, this script does not make use of SWF disassemblers like RABCasm which makes my script very lightweight and very fast)

The script has a few flags, some of which are just useful, and some of which you'll probably want to use every single time you run it.

$ py iceburg.py -h
usage: iceburg.py [-h] [-d DOMAIN] [-r] [-o OUTPUT] [-D] [path [path ...]]

Club Penguin client tool

positional arguments:
  path                  Path(s) to files or directories

optional arguments:
  -h, --help            show this help message and exit
  -d DOMAIN, --domain DOMAIN
                        The domain to use (ex. clubpenguin.com)
  -r, --recursive       Enables recursive mode
  -o OUTPUT, --output OUTPUT
                        Output directory
  -D, --dump            Dump decompressed FWS data

Domain (required) tells the script which internet domain to replace security locks and logging services with.

Recursive mode will make the script search through every directory below the path you specify for SWF files to check.

Output changes the output directory, assuming the output directory is empty no files will be overwritten.

Dump will make extra files containing the decompressed version of the data, useful for debugging purposes (for example if the script is making changes which break the SWF).

Example usage on real Club Penguin media!

/play/v2/client

 

$ py iceburg.py -o newclient -r -d cpps.pw -D .
INFO:__main__:This program can overwrite files on the disk, make sure to make backups before running this script or make sure the output flag is enabled!
INFO:__main__:Found ".\AccountActivation.swf"
INFO:__main__:Opening ".\AccountActivation.swf"
INFO:__main__:Reading file signature for ".\AccountActivation.swf"
INFO:__main__:Read 108383 bytes from ".\AccountActivation.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\AccountActivation.swf.fws"
INFO:__main__:Writing data to "newclient\.\AccountActivation.swf"
INFO:__main__:Found ".\airtower.swf"
INFO:__main__:Opening ".\airtower.swf"
INFO:__main__:Reading file signature for ".\airtower.swf"
INFO:__main__:Read 18745 bytes from ".\airtower.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\backyard.swf"
INFO:__main__:Opening ".\backyard.swf"
INFO:__main__:Reading file signature for ".\backyard.swf"
INFO:__main__:Read 19712 bytes from ".\backyard.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\banning.swf"
INFO:__main__:Opening ".\banning.swf"
INFO:__main__:Reading file signature for ".\banning.swf"
INFO:__main__:Read 432856 bytes from ".\banning.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\banning.swf.fws"
INFO:__main__:Writing data to "newclient\.\banning.swf"
INFO:__main__:Found ".\book.swf"
INFO:__main__:Opening ".\book.swf"
INFO:__main__:Reading file signature for ".\book.swf"
INFO:__main__:Read 133873 bytes from ".\book.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\catalog_viewer.swf"
INFO:__main__:Opening ".\catalog_viewer.swf"
INFO:__main__:Reading file signature for ".\catalog_viewer.swf"
INFO:__main__:Read 193837 bytes from ".\catalog_viewer.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\catalog_viewer.swf.fws"
INFO:__main__:Writing data to "newclient\.\catalog_viewer.swf"
INFO:__main__:Found ".\club_penguin.swf"
INFO:__main__:Opening ".\club_penguin.swf"
INFO:__main__:Reading file signature for ".\club_penguin.swf"
INFO:__main__:Read 993651 bytes from ".\club_penguin.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\club_penguin.swf.fws"
INFO:__main__:Writing data to "newclient\.\club_penguin.swf"
INFO:__main__:Found ".\courtyard_sensei.swf"
INFO:__main__:Opening ".\courtyard_sensei.swf"
INFO:__main__:Reading file signature for ".\courtyard_sensei.swf"
INFO:__main__:Read 165502 bytes from ".\courtyard_sensei.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\courtyard_sensei.swf.fws"
INFO:__main__:Writing data to "newclient\.\courtyard_sensei.swf"
INFO:__main__:Found ".\create.swf"
INFO:__main__:Opening ".\create.swf"
INFO:__main__:Reading file signature for ".\create.swf"
INFO:__main__:Read 126803 bytes from ".\create.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\create.swf.fws"
INFO:__main__:Writing data to "newclient\.\create.swf"
INFO:__main__:Found ".\dojo_sensei.swf"
INFO:__main__:Opening ".\dojo_sensei.swf"
INFO:__main__:Reading file signature for ".\dojo_sensei.swf"
INFO:__main__:Read 460627 bytes from ".\dojo_sensei.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\dojo_sensei.swf.fws"
INFO:__main__:Writing data to "newclient\.\dojo_sensei.swf"
INFO:__main__:Found ".\engine.swf"
INFO:__main__:Opening ".\engine.swf"
INFO:__main__:Reading file signature for ".\engine.swf"
INFO:__main__:Read 132752 bytes from ".\engine.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\epf_mission_hud.swf"
INFO:__main__:Opening ".\epf_mission_hud.swf"
INFO:__main__:Reading file signature for ".\epf_mission_hud.swf"
INFO:__main__:Read 51538 bytes from ".\epf_mission_hud.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\game_launcher.swf"
INFO:__main__:Opening ".\game_launcher.swf"
INFO:__main__:Reading file signature for ".\game_launcher.swf"
INFO:__main__:Read 100978 bytes from ".\game_launcher.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\game_launcher.swf.fws"
INFO:__main__:Writing data to "newclient\.\game_launcher.swf"
INFO:__main__:Found ".\gridview.swf"
INFO:__main__:Opening ".\gridview.swf"
INFO:__main__:Reading file signature for ".\gridview.swf"
INFO:__main__:Read 38842 bytes from ".\gridview.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\igloo.swf"
INFO:__main__:Opening ".\igloo.swf"
INFO:__main__:Reading file signature for ".\igloo.swf"
INFO:__main__:Read 271256 bytes from ".\igloo.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\igloo_map.swf"
INFO:__main__:Opening ".\igloo_map.swf"
INFO:__main__:Reading file signature for ".\igloo_map.swf"
INFO:__main__:Read 174344 bytes from ".\igloo_map.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\interface.swf"
INFO:__main__:Opening ".\interface.swf"
INFO:__main__:Reading file signature for ".\interface.swf"
INFO:__main__:Read 1589546 bytes from ".\interface.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\interface.swf.fws"
INFO:__main__:Writing data to "newclient\.\interface.swf"
INFO:__main__:Found ".\intro_to_cp.swf"
INFO:__main__:Opening ".\intro_to_cp.swf"
INFO:__main__:Reading file signature for ".\intro_to_cp.swf"
INFO:__main__:Read 644934 bytes from ".\intro_to_cp.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\intro_to_cp.swf.fws"
INFO:__main__:Writing data to "newclient\.\intro_to_cp.swf"
INFO:__main__:Found ".\intro_to_cp_quest_map.swf"
INFO:__main__:Opening ".\intro_to_cp_quest_map.swf"
INFO:__main__:Reading file signature for ".\intro_to_cp_quest_map.swf"
INFO:__main__:Read 138385 bytes from ".\intro_to_cp_quest_map.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\LikeWindow.swf"
INFO:__main__:Opening ".\LikeWindow.swf"
INFO:__main__:Reading file signature for ".\LikeWindow.swf"
INFO:__main__:Read 623951 bytes from ".\LikeWindow.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\LikeWindow.swf.fws"
INFO:__main__:Writing data to "newclient\.\LikeWindow.swf"
INFO:__main__:Found ".\like_window_module.swf"
INFO:__main__:Opening ".\like_window_module.swf"
INFO:__main__:Reading file signature for ".\like_window_module.swf"
INFO:__main__:Read 95363 bytes from ".\like_window_module.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\like_window_module.swf.fws"
INFO:__main__:Writing data to "newclient\.\like_window_module.swf"
INFO:__main__:Found ".\load.swf"
INFO:__main__:Opening ".\load.swf"
INFO:__main__:Reading file signature for ".\load.swf"
INFO:__main__:Read 15819 bytes from ".\load.swf"
INFO:__main__:Decompressing
INFO:__main__:Found a BootLoader, cracking client checks...
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\load.swf.fws"
INFO:__main__:Writing data to "newclient\.\load.swf"
INFO:__main__:Found ".\login.swf"
INFO:__main__:Opening ".\login.swf"
INFO:__main__:Reading file signature for ".\login.swf"
INFO:__main__:Read 465888 bytes from ".\login.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\mail.swf"
INFO:__main__:Opening ".\mail.swf"
INFO:__main__:Reading file signature for ".\mail.swf"
INFO:__main__:Read 188900 bytes from ".\mail.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\map_triggers.swf"
INFO:__main__:Opening ".\map_triggers.swf"
INFO:__main__:Reading file signature for ".\map_triggers.swf"
INFO:__main__:Read 41457 bytes from ".\map_triggers.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\membership_trial.swf"
INFO:__main__:Opening ".\membership_trial.swf"
INFO:__main__:Reading file signature for ".\membership_trial.swf"
INFO:__main__:Read 401298 bytes from ".\membership_trial.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\membership_trial.swf.fws"
INFO:__main__:Writing data to "newclient\.\membership_trial.swf"
INFO:__main__:Found ".\minigame_end_screens.swf"
INFO:__main__:Opening ".\minigame_end_screens.swf"
INFO:__main__:Reading file signature for ".\minigame_end_screens.swf"
INFO:__main__:Read 1470068 bytes from ".\minigame_end_screens.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\minigame_end_screens.swf.fws"
INFO:__main__:Writing data to "newclient\.\minigame_end_screens.swf"
INFO:__main__:Found ".\mobile_account_activation.swf"
INFO:__main__:Opening ".\mobile_account_activation.swf"
INFO:__main__:Reading file signature for ".\mobile_account_activation.swf"
INFO:__main__:Read 423335 bytes from ".\mobile_account_activation.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\mobile_account_activation.swf.fws"
INFO:__main__:Writing data to "newclient\.\mobile_account_activation.swf"
INFO:__main__:Found ".\newplayerexperience.swf"
INFO:__main__:Opening ".\newplayerexperience.swf"
INFO:__main__:Reading file signature for ".\newplayerexperience.swf"
INFO:__main__:Read 229574 bytes from ".\newplayerexperience.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\newplayerexperience.swf.fws"
INFO:__main__:Writing data to "newclient\.\newplayerexperience.swf"
INFO:__main__:Found ".\newspaper.swf"
INFO:__main__:Opening ".\newspaper.swf"
INFO:__main__:Reading file signature for ".\newspaper.swf"
INFO:__main__:Read 268950 bytes from ".\newspaper.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\newspaper.swf.fws"
INFO:__main__:Writing data to "newclient\.\newspaper.swf"
INFO:__main__:Found ".\ninja_progress.swf"
INFO:__main__:Opening ".\ninja_progress.swf"
INFO:__main__:Reading file signature for ".\ninja_progress.swf"
INFO:__main__:Read 893351 bytes from ".\ninja_progress.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\ninja_progress.swf.fws"
INFO:__main__:Writing data to "newclient\.\ninja_progress.swf"
INFO:__main__:Found ".\notifications.swf"
INFO:__main__:Opening ".\notifications.swf"
INFO:__main__:Reading file signature for ".\notifications.swf"
INFO:__main__:Read 405880 bytes from ".\notifications.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\notifications.swf.fws"
INFO:__main__:Writing data to "newclient\.\notifications.swf"
INFO:__main__:Found ".\party.swf"
INFO:__main__:Opening ".\party.swf"
INFO:__main__:Reading file signature for ".\party.swf"
INFO:__main__:Read 41162 bytes from ".\party.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\phone.swf"
INFO:__main__:Opening ".\phone.swf"
INFO:__main__:Reading file signature for ".\phone.swf"
INFO:__main__:Read 453268 bytes from ".\phone.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\phrase_autocomplete.swf"
INFO:__main__:Opening ".\phrase_autocomplete.swf"
INFO:__main__:Reading file signature for ".\phrase_autocomplete.swf"
INFO:__main__:Read 132396 bytes from ".\phrase_autocomplete.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\phrase_autocomplete.swf.fws"
INFO:__main__:Writing data to "newclient\.\phrase_autocomplete.swf"
INFO:__main__:Found ".\pigfarm_catalog.swf"
INFO:__main__:Opening ".\pigfarm_catalog.swf"
INFO:__main__:Reading file signature for ".\pigfarm_catalog.swf"
INFO:__main__:Read 126563 bytes from ".\pigfarm_catalog.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\pigfarm_catalog.swf.fws"
INFO:__main__:Writing data to "newclient\.\pigfarm_catalog.swf"
INFO:__main__:Found ".\preactivation.swf"
INFO:__main__:Opening ".\preactivation.swf"
INFO:__main__:Reading file signature for ".\preactivation.swf"
INFO:__main__:Read 501079 bytes from ".\preactivation.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\preactivation.swf.fws"
INFO:__main__:Writing data to "newclient\.\preactivation.swf"
INFO:__main__:Found ".\puffle_adoption.swf"
INFO:__main__:Opening ".\puffle_adoption.swf"
INFO:__main__:Reading file signature for ".\puffle_adoption.swf"
INFO:__main__:Read 3890054 bytes from ".\puffle_adoption.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_adoption.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_adoption.swf"
INFO:__main__:Found ".\puffle_care.swf"
INFO:__main__:Opening ".\puffle_care.swf"
INFO:__main__:Reading file signature for ".\puffle_care.swf"
INFO:__main__:Read 1076512 bytes from ".\puffle_care.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_care.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_care.swf"
INFO:__main__:Found ".\puffle_care_station_menu.swf"
INFO:__main__:Opening ".\puffle_care_station_menu.swf"
INFO:__main__:Reading file signature for ".\puffle_care_station_menu.swf"
INFO:__main__:Read 637864 bytes from ".\puffle_care_station_menu.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_care_station_menu.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_care_station_menu.swf"
INFO:__main__:Found ".\puffle_certificate.swf"
INFO:__main__:Opening ".\puffle_certificate.swf"
INFO:__main__:Reading file signature for ".\puffle_certificate.swf"
INFO:__main__:Read 376831 bytes from ".\puffle_certificate.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_certificate.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_certificate.swf"
INFO:__main__:Found ".\puffle_gold_berry_machine.swf"
INFO:__main__:Opening ".\puffle_gold_berry_machine.swf"
INFO:__main__:Reading file signature for ".\puffle_gold_berry_machine.swf"
INFO:__main__:Read 600591 bytes from ".\puffle_gold_berry_machine.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_gold_berry_machine.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_gold_berry_machine.swf"
INFO:__main__:Found ".\puffle_gold_jackhammer_prompt.swf"
INFO:__main__:Opening ".\puffle_gold_jackhammer_prompt.swf"
INFO:__main__:Reading file signature for ".\puffle_gold_jackhammer_prompt.swf"
INFO:__main__:Read 673659 bytes from ".\puffle_gold_jackhammer_prompt.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_gold_jackhammer_prompt.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_gold_jackhammer_prompt.swf"
INFO:__main__:Found ".\puffle_gold_quest_progress.swf"
INFO:__main__:Opening ".\puffle_gold_quest_progress.swf"
INFO:__main__:Reading file signature for ".\puffle_gold_quest_progress.swf"
INFO:__main__:Read 396614 bytes from ".\puffle_gold_quest_progress.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_gold_quest_progress.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_gold_quest_progress.swf"
INFO:__main__:Found ".\puffle_manual.swf"
INFO:__main__:Opening ".\puffle_manual.swf"
INFO:__main__:Reading file signature for ".\puffle_manual.swf"
INFO:__main__:Read 3335829 bytes from ".\puffle_manual.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_manual.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_manual.swf"
INFO:__main__:Found ".\puffle_treasure_infographic.swf"
INFO:__main__:Opening ".\puffle_treasure_infographic.swf"
INFO:__main__:Reading file signature for ".\puffle_treasure_infographic.swf"
INFO:__main__:Read 229784 bytes from ".\puffle_treasure_infographic.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_treasure_infographic.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_treasure_infographic.swf"
INFO:__main__:Found ".\QuestCommunicator.swf"
INFO:__main__:Opening ".\QuestCommunicator.swf"
INFO:__main__:Reading file signature for ".\QuestCommunicator.swf"
INFO:__main__:Read 120647 bytes from ".\QuestCommunicator.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\QuestCommunicator.swf.fws"
INFO:__main__:Writing data to "newclient\.\QuestCommunicator.swf"
INFO:__main__:Found ".\rooms_common.swf"
INFO:__main__:Opening ".\rooms_common.swf"
INFO:__main__:Reading file signature for ".\rooms_common.swf"
INFO:__main__:Read 137633 bytes from ".\rooms_common.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\sentry.swf"
INFO:__main__:Opening ".\sentry.swf"
INFO:__main__:Reading file signature for ".\sentry.swf"
INFO:__main__:Read 5184 bytes from ".\sentry.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\sentry.swf.fws"
INFO:__main__:Writing data to "newclient\.\sentry.swf"
INFO:__main__:Found ".\shell.swf"
INFO:__main__:Opening ".\shell.swf"
INFO:__main__:Reading file signature for ".\shell.swf"
INFO:__main__:Read 405316 bytes from ".\shell.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\shell.swf.fws"
INFO:__main__:Writing data to "newclient\.\shell.swf"
INFO:__main__:Found ".\snowball.swf"
INFO:__main__:Opening ".\snowball.swf"
INFO:__main__:Reading file signature for ".\snowball.swf"
INFO:__main__:Read 588197 bytes from ".\snowball.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\snowball.swf.fws"
INFO:__main__:Writing data to "newclient\.\snowball.swf"
INFO:__main__:Found ".\stampbook.swf"
INFO:__main__:Opening ".\stampbook.swf"
INFO:__main__:Reading file signature for ".\stampbook.swf"
INFO:__main__:Read 251698 bytes from ".\stampbook.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\stamps.swf"
INFO:__main__:Opening ".\stamps.swf"
INFO:__main__:Reading file signature for ".\stamps.swf"
INFO:__main__:Read 176508 bytes from ".\stamps.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\startscreen.swf"
INFO:__main__:Opening ".\startscreen.swf"
INFO:__main__:Reading file signature for ".\startscreen.swf"
INFO:__main__:Read 92967 bytes from ".\startscreen.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\ugc_wall.swf"
INFO:__main__:Opening ".\ugc_wall.swf"
INFO:__main__:Reading file signature for ".\ugc_wall.swf"
INFO:__main__:Read 233894 bytes from ".\ugc_wall.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\ugc_wall.swf.fws"
INFO:__main__:Writing data to "newclient\.\ugc_wall.swf"
INFO:__main__:Found ".\world.swf"
INFO:__main__:Opening ".\world.swf"
INFO:__main__:Reading file signature for ".\world.swf"
INFO:__main__:Read 188656 bytes from ".\world.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\world.swf.fws"
INFO:__main__:Writing data to "newclient\.\world.swf"
INFO:__main__:Found ".\create\create_module.swf"
INFO:__main__:Opening ".\create\create_module.swf"
INFO:__main__:Reading file signature for ".\create\create_module.swf"
INFO:__main__:Read 26746 bytes from ".\create\create_module.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\de\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\de\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\de\FontLibrary.swf"
INFO:__main__:Read 2402490 bytes from ".\fonts\de\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\en\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\en\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\en\FontLibrary.swf"
INFO:__main__:Read 2448363 bytes from ".\fonts\en\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\es\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\es\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\es\FontLibrary.swf"
INFO:__main__:Read 2403541 bytes from ".\fonts\es\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\fr\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\fr\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\fr\FontLibrary.swf"
INFO:__main__:Read 2404233 bytes from ".\fonts\fr\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\pt\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\pt\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\pt\FontLibrary.swf"
INFO:__main__:Read 2404468 bytes from ".\fonts\pt\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\fonts\ru\FontLibrary.swf"
INFO:__main__:Opening ".\fonts\ru\FontLibrary.swf"
INFO:__main__:Reading file signature for ".\fonts\ru\FontLibrary.swf"
INFO:__main__:Read 2443996 bytes from ".\fonts\ru\FontLibrary.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\merch\20.swf"
INFO:__main__:Opening ".\merch\20.swf"
INFO:__main__:Reading file signature for ".\merch\20.swf"
INFO:__main__:Read 1065613 bytes from ".\merch\20.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\merch\app.swf"
INFO:__main__:Opening ".\merch\app.swf"
INFO:__main__:Reading file signature for ".\merch\app.swf"
INFO:__main__:Read 68307 bytes from ".\merch\app.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\merch\inGameTreasurebookViewer.swf"
INFO:__main__:Opening ".\merch\inGameTreasurebookViewer.swf"
INFO:__main__:Reading file signature for ".\merch\inGameTreasurebookViewer.swf"
INFO:__main__:Read 99734 bytes from ".\merch\inGameTreasurebookViewer.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\merch\treasurebook.swf"
INFO:__main__:Opening ".\merch\treasurebook.swf"
INFO:__main__:Reading file signature for ".\merch\treasurebook.swf"
INFO:__main__:Read 1065505 bytes from ".\merch\treasurebook.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\merch\views.swf"
INFO:__main__:Opening ".\merch\views.swf"
INFO:__main__:Reading file signature for ".\merch\views.swf"
INFO:__main__:Read 1249634 bytes from ".\merch\views.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\music\Music.swf"
INFO:__main__:Opening ".\music\Music.swf"
INFO:__main__:Reading file signature for ".\music\Music.swf"
INFO:__main__:Read 261479 bytes from ".\music\Music.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\music\Music.swf.fws"
INFO:__main__:Writing data to "newclient\.\music\Music.swf"
INFO:__main__:Found ".\puffle\care\assetLibraryBlack.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryBlack.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryBlack.swf"
INFO:__main__:Read 66513 bytes from ".\puffle\care\assetLibraryBlack.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryBlue.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryBlue.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryBlue.swf"
INFO:__main__:Read 83304 bytes from ".\puffle\care\assetLibraryBlue.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryBrown.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryBrown.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryBrown.swf"
INFO:__main__:Read 56619 bytes from ".\puffle\care\assetLibraryBrown.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryGold.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryGold.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryGold.swf"
INFO:__main__:Read 476240 bytes from ".\puffle\care\assetLibraryGold.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryGreen.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryGreen.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryGreen.swf"
INFO:__main__:Read 86823 bytes from ".\puffle\care\assetLibraryGreen.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryOrange.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryOrange.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryOrange.swf"
INFO:__main__:Read 93600 bytes from ".\puffle\care\assetLibraryOrange.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryPink.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryPink.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryPink.swf"
INFO:__main__:Read 58245 bytes from ".\puffle\care\assetLibraryPink.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryPurple.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryPurple.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryPurple.swf"
INFO:__main__:Read 74862 bytes from ".\puffle\care\assetLibraryPurple.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryRainbow.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryRainbow.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryRainbow.swf"
INFO:__main__:Read 381488 bytes from ".\puffle\care\assetLibraryRainbow.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryRed.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryRed.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryRed.swf"
INFO:__main__:Read 81886 bytes from ".\puffle\care\assetLibraryRed.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryWhite.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryWhite.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryWhite.swf"
INFO:__main__:Read 102127 bytes from ".\puffle\care\assetLibraryWhite.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\care\assetLibraryYellow.swf"
INFO:__main__:Opening ".\puffle\care\assetLibraryYellow.swf"
INFO:__main__:Reading file signature for ".\puffle\care\assetLibraryYellow.swf"
INFO:__main__:Read 66185 bytes from ".\puffle\care\assetLibraryYellow.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\handler\puffle_handler.swf"
INFO:__main__:Opening ".\puffle\handler\puffle_handler.swf"
INFO:__main__:Reading file signature for ".\puffle\handler\puffle_handler.swf"
INFO:__main__:Read 579088 bytes from ".\puffle\handler\puffle_handler.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle\handler\puffle_handler.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle\handler\puffle_handler.swf"
INFO:__main__:Found ".\puffle\handler\temp for handler\interface2.0-21.swf"
INFO:__main__:Opening ".\puffle\handler\temp for handler\interface2.0-21.swf"
INFO:__main__:Reading file signature for ".\puffle\handler\temp for handler\interface2.0-21.swf"
INFO:__main__:Read 39864 bytes from ".\puffle\handler\temp for handler\interface2.0-21.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\handler\temp%20for%20handler\interface2.0-21.swf"
INFO:__main__:Opening ".\puffle\handler\temp%20for%20handler\interface2.0-21.swf"
INFO:__main__:Reading file signature for ".\puffle\handler\temp%20for%20handler\interface2.0-21.swf"
INFO:__main__:Read 39864 bytes from ".\puffle\handler\temp%20for%20handler\interface2.0-21.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle\puppet\assetLibraryPufflePuppet.swf"
INFO:__main__:Opening ".\puffle\puppet\assetLibraryPufflePuppet.swf"
INFO:__main__:Reading file signature for ".\puffle\puppet\assetLibraryPufflePuppet.swf"
INFO:__main__:Read 394069 bytes from ".\puffle\puppet\assetLibraryPufflePuppet.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle\puppet\assetLibraryPufflePuppet.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle\puppet\assetLibraryPufflePuppet.swf"
INFO:__main__:Found ".\puffle_tricks_hud\puffle_tricks_hud.swf"
INFO:__main__:Opening ".\puffle_tricks_hud\puffle_tricks_hud.swf"
INFO:__main__:Reading file signature for ".\puffle_tricks_hud\puffle_tricks_hud.swf"
INFO:__main__:Read 901226 bytes from ".\puffle_tricks_hud\puffle_tricks_hud.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_tricks_hud\puffle_tricks_hud.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_tricks_hud\puffle_tricks_hud.swf"
INFO:__main__:Found ".\puffle_tricks_hud\assets\tricks_hud_assets.swf"
INFO:__main__:Opening ".\puffle_tricks_hud\assets\tricks_hud_assets.swf"
INFO:__main__:Reading file signature for ".\puffle_tricks_hud\assets\tricks_hud_assets.swf"
INFO:__main__:Read 13373 bytes from ".\puffle_tricks_hud\assets\tricks_hud_assets.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle_ui_widget\puffle_ui_widget.swf"
INFO:__main__:Opening ".\puffle_ui_widget\puffle_ui_widget.swf"
INFO:__main__:Reading file signature for ".\puffle_ui_widget\puffle_ui_widget.swf"
INFO:__main__:Read 811179 bytes from ".\puffle_ui_widget\puffle_ui_widget.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header
INFO:__main__:Copied dump to "newclient\.\puffle_ui_widget\puffle_ui_widget.swf.fws"
INFO:__main__:Writing data to "newclient\.\puffle_ui_widget\puffle_ui_widget.swf"
INFO:__main__:Found ".\puffle_ui_widget\assets\radial_menu_assets.swf"
INFO:__main__:Opening ".\puffle_ui_widget\assets\radial_menu_assets.swf"
INFO:__main__:Reading file signature for ".\puffle_ui_widget\assets\radial_menu_assets.swf"
INFO:__main__:Read 195820 bytes from ".\puffle_ui_widget\assets\radial_menu_assets.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found ".\puffle_ui_widget\assets\stats_bar_assets.swf"
INFO:__main__:Opening ".\puffle_ui_widget\assets\stats_bar_assets.swf"
INFO:__main__:Reading file signature for ".\puffle_ui_widget\assets\stats_bar_assets.swf"
INFO:__main__:Read 11305 bytes from ".\puffle_ui_widget\assets\stats_bar_assets.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Finished. Goodbye!

/play/v2/games/

 

$ py iceburg.py -d cpps.pw -r -D games
INFO:__main__:Opening "games\cp_party_games\shuffle\lang\ru\sign.swf"
INFO:__main__:Reading file signature for "games\cp_party_games\shuffle\lang\ru\sign.swf"
INFO:__main__:Read 5711 bytes from "games\cp_party_games\shuffle\lang\ru\sign.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found "games\cp_party_games\shuffle\lang\ru\title.swf"
INFO:__main__:Opening "games\cp_party_games\shuffle\lang\ru\title.swf"
INFO:__main__:Reading file signature for "games\cp_party_games\shuffle\lang\ru\title.swf"
INFO:__main__:Read 15794 bytes from "games\cp_party_games\shuffle\lang\ru\title.swf"
INFO:__main__:Decompressing
WARNING:__main__:No changes were made to the data!
INFO:__main__:Found "games\cp_party_games\soaker\bootstrap.swf"
INFO:__main__:Opening "games\cp_party_games\soaker\bootstrap.swf"
INFO:__main__:Reading file signature for "games\cp_party_games\soaker\bootstrap.swf"
INFO:__main__:Read 6300 bytes from "games\cp_party_games\soaker\bootstrap.swf"
INFO:__main__:Decompressing
INFO:__main__:Found clubpenguin.com
INFO:__main__:Found disney.com
INFO:__main__:Re-compressing data and appending file signature and header

Script download attached :~)

Prerequisites

  • Python 3
  • :)

client-tool.zip

]]>
110Sun, 18 Jun 2017 15:19:09 +0000
Avatarhttps://archive.solero.me/topic/114-avatar/ Avatar is an api wrapper written in Perl using the Common Gateway Interface and GD module to put together avatars. This api requires that you have CGI setup with Perl on your web-server, by default Apache should serve the files so you don't have to go through any struggle, Nginx users however would need to have CGI with Perl setup which is a daunting task. This project requires that you have a Perl version of 5.10 and above and you would have to install the modules from this list using CPAN or MCPAN to get the api to work and also make sure to have an active Internet connection. The files should be stored in htdocs for Windows users and var/www/html for Linux users.

 

Usage: http://127.0.0.1/avatar/index.pl?items=4-221-111&size=600

66a1d941eef1942c2fcf17216f36890c.thumb.png.e55f5f0b5d56e887347a5ff13939c35b.png

 

Project URL: https://github.com/fantasyhacking/Avatar

Download: https://github.com/fantasyhacking/Avatar/archive/master.zip

 

This project can be used for your CPPSes for things such as Managers, Profiles etc. Kindly also read the LICENSE before you use this project. Hope y'all find some use with this, good luck!

 

]]>
114Mon, 19 Jun 2017 03:33:10 +0000
Fully functional minigames [AS2/AS3]https://archive.solero.me/topic/109-fully-functional-minigames-as2as3/ Seeing as a few people are having issues with getting games to work and games appearing as "white screen" when attempting to launch them, I've decided to fix the issue and release the base games for people.

This will work with both AS2 and AS3 (AS3 has more games, this is only the base games which were originally available)

Games included: Astro Barrier, Bean Counters, Puffle Launch (the game is server sided so you have to code the actual handlers in), Dance Contest, Ice Fishing, Hydro Hopper, Jetpack Adventures, Cart Surfer, MixMaster, Pizzatron, Puffle Rescue, Puffle Roundup, Aqua Grabber, Thin Ice, Catchin Waves and Tumblers.

Instructions

Go to your mediaserver and go to play/v2/content/global/

Replace your games folder with the one you're about to download, clear your cache and reload and then attempt to play games.

Download Here

You're welcome, let me know if this works for you. 

]]>
109Sun, 18 Jun 2017 15:11:16 +0000
CPBlog - A WordPress Blog theme for CP/CPPShttps://archive.solero.me/topic/108-cpblog-a-wordpress-blog-theme-for-cpcpps/ CPBlog is a simple lightweight WordPress theme which will help you get a free working Club Penguin blog up and running.

Screenshot_121.png

Version: 1.0 

Download Link: Click Here

This is a little project of mine which I want to continue working on and improving.

Updates will come when I'm able to work on them and when I wish to work on them.

I'll be working on a newer Club Penguin blog theme soon also.

Requirements

WordPress (download here)

How to install:

- Install WordPress

- Go to admin Dashboard

- On the left hand side hover over "Appearance" and click on "Themes"

- Click on "Add New"

- Click on "Upload Theme"

- Download the latest version of CPBlog below, and install it as it.

- Activate and Done!

There is no dedicated support for this theme but you can leave issues and suggestions below. 

Please do not re-upload this theme elsewhere, use the same download link as when I push updates the link will be the same and I don't want people using outdated versions in the near future.

]]>
108Sun, 18 Jun 2017 13:03:12 +0000
Kitsune PHP Shell.https://archive.solero.me/topic/87-kitsune-php-shell/ Something I created when I was bored. Don't even take it serious though.

<?php
// By Zaseth. FTP not tested.
$ftp_server = "ftp.example.com";
$conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); 

if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
    echo 'Seems to be Windows.';
    echo exec('dir');
} else {
    echo 'Seems to be a distribution of Linux.';
    $output = shell_exec('ls -lart');
    echo "<pre>$output</pre>";
    echo exec('whoami');
}
echo "------------------------";
$filename = 'Kitsune.sql';

if (file_exists($filename)) {
    echo "Seems to be Kitsune.";
} else {
    echo "This doesnt seem to be $filename";
}
 


$myfile = fopen("Login.xml", "r") or die("Unable to open file!");
echo "------------------------";
echo fread($myfile,filesize("Login.xml"));
fclose($myfile);

$myfile3 = fopen("Database.xml", "r") or die("Unable to open file!");
echo "------------------------";
echo fread($myfile3,filesize("Database.xml"));
fclose($myfile3);

$myfile2 = fopen("Kitsune\Logging\Logs\Warn.txt", "r") or die("Unable to open file!");
echo "------------------------";
echo fread($myfile2,filesize("Kitsune\Logging\Logs\Warn.txt"));
fclose($myfile2);

?>

 

]]>
87Tue, 13 Jun 2017 19:17:04 +0000
Rile5 SWF Files Archivehttps://archive.solero.me/topic/79-rile5-swf-files-archive/ New Moderator Pin 2014 (ShawnTD and Logan) - http://www.mediafire.com/file/i5ggve3bl1qs5lo/New+Moderator+Pin+(2014).zip

VirusTotal from File - https://www.virustotal.com/en/file/939dc2c9ecefe75d39055fe50169ec25009166b174bc8595d2fdda0f3fecd093/analysis/

 

__________________________________________

OldCP Mediaserver Over 150MB of old files (Tank) - https://dl.dropboxusercontent.com/s/7cv4i56h7j5cwz7/OldCP Media.zip?dl=1&token_hash=AAGGn8D354VxjqDJqX2iZFO52VTNV6SF7BQ2vNh8uKRf_Q

VirusTotal from File - Too large to scan.

__________________________________________

Updated Newspaper 20/2/14 (iSubhi2012) - http://www.mediafire.com/file/9q86ubvzesbuyf0/Club+Penguin+Times+Issue%23435.rar#435.rar

VirusTotal from File - https://www.virustotal.com/en/file/fbf0e8b1e714b15bbad245b0d6f904ebfd14fefacc7b0f2abc9f8ba58dbd54a5/analysis/1392983021/

__________________________________________

Thats all i got from Wayback Machine. If i find something, ill comment here.

 

 

 

]]>
79Tue, 13 Jun 2017 16:53:55 +0000
The Ultimate Club Penguin SWF Archivehttps://archive.solero.me/topic/58-the-ultimate-club-penguin-swf-archive/ Hey Solero!

A while back I created a relatively large archive of SWF files for anybody to use. While it's not completely up to date at this point, it might still be of some use to some of you as it contains almost every available party, catalog and room from 2005 - 2013. It's also missing a few of the lost parties and catalogs that surfaced recently. Something is better than nothing, right?

Download

http://www.mediafire.com/file/6sj7ik0bxyt8hyb/The_Ultimate_Club_Penguin_SWF_Archive.rar

It's a rather large file so it might take some time to download depending on your internet speed.

I'm possibly going to update this in the future, but I don't exactly know when that will be. I hope you guys can make good use out of this!

]]>
58Tue, 13 Jun 2017 00:17:59 +0000
(REMAKE) Beta Test Party Townhttps://archive.solero.me/topic/77-remake-beta-test-party-town/ Hey, this file is a remake of the beta test party town.

__________________________________________________________

Zippyshare: http://www47.zippyshare.com/v/shmd0oUg/file.html (if link is down tell me)

VirusTotal: https://www.virustotal.com/en/file/68ea04c2169f83142161c831380deae30184a2ca8eb9cf151989e95543489ba9/analysis/1497365174/

 

Enjoy!

]]>
77Tue, 13 Jun 2017 14:47:30 +0000
Club Penguin Mediaserver Wordlisthttps://archive.solero.me/topic/70-club-penguin-mediaserver-wordlist/ I ripped some stuff together and eventually created this.

You can find it here: https://pastebin.com/raw/N7h0u7MD

]]>
70Tue, 13 Jun 2017 10:52:20 +0000
Some .FLA files (most decompiled)https://archive.solero.me/topic/67-some-fla-files-most-decompiled/ I still had this somewhere.

Download:

https://mega.nz/#!t4YwUDYD!NRJLlxeVSqpqyHk6e2NrB2VL3lUKrOwMkGgqLHqIX_o

]]>
67Tue, 13 Jun 2017 10:45:43 +0000
Rare Nightclub from 2008https://archive.solero.me/topic/66-rare-nightclub-from-2008/ Something rare.

Got the .SWF and the .FLA

Not corrupt and fully working.

 

Nightclub_2008.rar

]]>
66Tue, 13 Jun 2017 10:44:41 +0000
thefishv1.3.swfhttps://archive.solero.me/topic/65-thefishv13swf/ I didn't see any v1.3 so I will just upload it here.

Download:

 

thefish1.3.rar

]]>
65Tue, 13 Jun 2017 10:43:55 +0000
bergfireworks.swf + mtnfireworks.swfhttps://archive.solero.me/topic/64-bergfireworksswf-mtnfireworksswf/ Not rare, but still pretty cool to have.

Download:

 

fireworks swf.rar

]]>
64Tue, 13 Jun 2017 10:42:59 +0000
townbeendelayed.swfhttps://archive.solero.me/topic/63-townbeendelayedswf/ Some cool custom .SWF

Download:

https://mega.nz/#!Z1JRRCgJ!la2Pnf2aPd8g4wD4hYS-GtDB_Qp-lf9ww_LsHLE2VPo

]]>
63Tue, 13 Jun 2017 10:41:45 +0000
<![CDATA[Club Penguin Play Page Feb 2012 Cleaned & Updated]]>https://archive.solero.me/topic/62-club-penguin-play-page-feb-2012-cleaned-updated/ Hey guys.

So I have the CP Play Page of Feb 2012.

I cleaned it and updated the JavaScript.

Download:

 

CP_Play_Page_Feb_2012_Cleaned_by_Zaseth.rar

]]>
62Tue, 13 Jun 2017 10:40:21 +0000
Club Penguin 2005-2006https://archive.solero.me/topic/61-club-penguin-2005-2006/ Some SWF files, webpages and sources from those old days. I hope you enjoy!
Download:

https://mega.nz/#!cwJ1wQ7Y!2ghZJDBgvXHdIP-zDBmrqDpkK_Q3DXoYUG-nPigOdQA

]]>
61Tue, 13 Jun 2017 07:07:38 +0000