Newgrounds Swf Converter For Mac

This is a tutorial showing you how to easily hack flash (.swf) games! You only need two things: • A flash game (in.swf format) and • Flasm (an amazing flash disassembler).

Does Swivel work with SWF, FLA, or XFL files? Swivel requires the SWF file of the movie. What platforms does Swivel run on? Swivel is available for Windows XP or higher, 32-bit or 64-bit, and Intel-based Mac OS X 10.5 (Leopard) or higher. Will Swivel be released for Linux?

Getting Flasm Step 1 Download Flasm Flasm can be downloaded from the website. Step 2 Save & Extract Save and extract the.zip file into a folder on your desktop (for the ease of this tutorial). Here is what you will end up with: Note: I renamed my folder 'Flasm'. Finding a Flash Game to Hack Step 3 Game Source I usually use to find good flash games. Step 4 Select the Game Now, select a game to hack and open up the game page. I have chosen the game Stick War for this tutorial.

Swf

Step 5 View Page Info Next, right-click next to the game and select 'View Page Info'. Step 6 Media File Select the 'Media' tab and find an embedded file that looks like it relates to your game in the list of media. File Step 7 Save As Highlight the file and 'Save As' into the Flasm folder on your desktop.

Disassembling the Flash File Now, we have to disassemble the compiled flash file, for which we need to use CMD prompt. Step 8 Open Up CMD Prompt Step 9 Change Directory Change the directory to your Flasm folder. For this, you will need to type in something like this: cd c: Documents and Settings Sy Desktop Flasm Step 10 Disassemble File Now that you're in the Flasm directory, we can proceed to disassemble the file and convert it into a text file using this command: flasm -d 509310_stickwarfull.swf > StickWar.txt This will create a.txt file of the flash game in the same directory. Note: I am using a file called 509310_stickwarfull.swf, you will most likely be using another file name (for example, 388597_yourgame.swf). For the time being, minimize the CMD prompt screen, but DON'T close it.

Now the fun begins. Making Your Alterations Now that we have a text document containing the ActionScript of the game, we can start to edit it and make some changes to the game. Step 11 Open the.TXT File Open up the.txt file you've just created in the Flasm directory.

Once the text file is open (using Notepad) you will see lines and lines of code. At first sight this looks confusing, but we're just going to 'pick' at the bits we want to modify. Step 12 Choose a Value Search for a value or element of the game that you want to change. For this tutorial, I will be changing the 'cost' of buying people in the Stick War game (obviously, at a lower cost, lol). Step 13 Find the Element Use CTRL + F to find a phrase you're looking for. In this case, I chose 'COST', which after a few times searching, I found the elements that I wanted to change.