@W00dL3cs I thinks its pretty easy how it is, don't seeing the point in what you suggested
@leenster I wouldn't of made this tool if you wouldn't of released the Habbo UI Editor, so thank you !
Erm you must of downloaded the first download i put up because it is actually
Code:@ECHO OFF
color 1b
title HabboExtractor
:top
echo ***************************************************************
echo.
echo Habbo Extractor
echo.
echo Created by tomsaundo - forum.ragezone.com
echo.
echo ***************************************************************
echo.
echo Add your habbo.swf to the habbo folder before you continue
pause
echo.
echo What would you like to do?
echo.
echo Key: [1] Decompile your habbo SWF
echo [2] Compile your habbo SWF
echo.
echo [3] Exit
echo.
:choice
set /P C= Enter the number of the option you would like:
if "%C%"=="3" goto exit
if "%C%"=="2" goto comp
if "%C%"=="1" goto decomp
goto choice
:decomp
echo Habbo Extractor is decompiling the SWF.
echo Please wait......
abcexport habbo/habbo.swf
rabcdasm habbo/habbo-0.abc
rabcdasm habbo/habbo-1.abc
goto exit
:comp
echo Habbo Extrator is compiling the SWF.
echo Please wait......
RABCASM habbo/habbo-0/Habbo-0.main.asasm
RABCASM habbo/habbo-1/Habbo-1.main.asasm
abcreplace habbo/habbo.swf 0 habbo/habbo-0/habbo-0.main.abc
abcreplace habbo/habbo.swf 1 habbo/habbo-1/habbo-1.main.abc
goto exit
:exit
cls
echo ***************************************************************
echo.
echo Thank You for using Habbo Extractor by tomsaundo
echo.
echo ***************************************************************
pause
exit

