I found the thread made by Zorno about his release but the link on his thread is dead so I'm unable to get his GUI for sPCK. And I can't find it on my backup...
Could you upload it on megaupload? pls :ehh:
Printable View
Clicking on convert and all shit but when it opens it closing down again.
<retarded voice>
heuck heuck GUI for the win heuck heuck
</retarded voice>
How is sPCK not working
1. Make a .bat file
2. Inside bat file put sPCK.exe -x surfaces.pck
I used -x as an example, it could be -x, -c, -xp, -a and more that I forget
I also used surfaces.pck as an example
Make sure spck and the bat file are in the same directory as whatever you are trying to do
Make sure the .pck is not to big either
Could you send me a pic of a example you do?
Still don't really get it.. fucking tired of this fail shit /go sleep
I use *.bat files like NaMeLeS says. My batch files use choice.exe so you will need to have that. I think it might be installed on Windows Vista and 7 (not sure of XP).
Create a new text file with the following and then save it with the *.bat extension.
Pack.bat
Unpack.batCode::MAIN
@ECHO OFF
ECHO What file would you like to pack
ECHO 1. configs.pck
ECHO 2. models.pck
ECHO 3. gfx.pck
ECHO 4. surfaces.pck
ECHO 5. custom
ECHO 6. exit
@choice.exe /C:123456 /N /D 6 /T 60
IF %ERRORLEVEL% == 1 GOTO CONFIGS
IF %ERRORLEVEL% == 2 GOTO MODELS
IF %ERRORLEVEL% == 3 GOTO GFX
IF %ERRORLEVEL% == 4 GOTO SURFACES
IF %ERRORLEVEL% == 5 GOTO CUSTOM
IF %ERRORLEVEL% == 6 GOTO EXIT
:CONFIGS
sPCK -c configs.pck.files
@GOTO EXIT
:MODELS
sPCK -c models.pck.files
@GOTO EXIT
:GFX
sPCK -c gfx.pck.files
@GOTO EXIT
:SURFACES
sPCK -c surfaces.pck.files
@GOTO EXIT
:CUSTOM
ECHO Enter the name of your *.pck file you wish to pack
SET DIR=
set /p dir=
sPCK -c %DIR%.files
:EXIT
pause
My batch files only have options for configs, models, gfx and surfaces but its easy enough to add more.Code::MAIN
@ECHO OFF
ECHO What file would you like to unpack
ECHO 1. configs.pck
ECHO 2. models.pck
ECHO 3. gfx.pck
ECHO 4. surfaces.pck
ECHO 5. custom
ECHO 6. exit
@choice.exe /C:123456 /N /D 6 /T 60
IF %ERRORLEVEL% == 1 GOTO CONFIGS
IF %ERRORLEVEL% == 2 GOTO MODELS
IF %ERRORLEVEL% == 3 GOTO GFX
IF %ERRORLEVEL% == 4 GOTO SURFACES
IF %ERRORLEVEL% == 5 GOTO CUSTOM
IF %ERRORLEVEL% == 6 GOTO EXIT
:CONFIGS
sPCK -x configs.pck
@GOTO EXIT
:MODELS
sPCK -x models.pck
@GOTO EXIT
:GFX
sPCK -x gfx.pck
@GOTO EXIT
:SURFACES
sPCK -x surfaces.pck
@GOTO EXIT
:CUSTOM
ECHO Enter the name of your *.pck file you wish to unpack
SET DIR=
set /p dir=
sPCK -x %DIR%
:EXIT
pause
You can also make new bats for other commands by duplicating the files and changing the commands.
Unfortunately I don't have sPCK-GUI either since I just use batch files.
sPCK GUI
sPCK GUI
spckgui.7z
Password: onlyidiotaskingforpassword
Drakaer choice.exe is a Windows utility, DOS had something similar until DOS 6 when Microsoft backported it specifically for DOS 6.
Windows actually has a pretty decent CLI it's just that documentation is close to nonexistent as nearly everything the CLI can do there is a GUI for. If you really want to figure it all out find an old copy of Windows and read the book it comes with... Quite an interesting read tbh.
Posted via Mobile Device
Open Command Prompt under Accessories in the start menu of windows.
Change directory to the location of sPCK e.g "cd C:\sPCK"
Then type spck.exe -x "C:\My Perfect World\element\models.pck" or which ever pck file you want to extract
Then to repack it spck.exe -c "C:\My Perfect World\element\models.pck.files"
Yeah I know that. I just wasn't sure if it came with all versions Windows. In Windows 95/98 it is choice.com and not choice.exe. I just wasn't sure if XP was choice.com or choice.exe. Both programs do the same thing anyway.
I actually had a manual or something for Windows 98 but I don't know if I still have it.
I just made a .bat file with this in it an put it in the same directory as sPCK.exe
I guess everyone has a different way of doing it... :)Code:@ECHO OFF
ECHO What switch do you want to use? eg -x extract, -c compress, -a inject
SET /P switch=
ECHO What is the file path?
SET /P path=
sPCK.exe %switch% "%path%"
Add the following lines into the Unpack.bat in the appropriate places.
Or use %switch% variable like Nameles said.Code:ECHO 7. CUP
@choice.exe /C:1234567 /N /D 6 /T 60
:CUP
set /p dir=
sPCK -xp %DIR%
Or use this. I used Nameles' switch idea to combine everything into on batch file. The only thing not included that sPCK does is extraction with base64 names.
Code::TOP
@ECHO OFF
set end=
ECHO What would you like to do?
ECHO 1. Compress *.pck
ECHO 2. Extract *.pck
ECHO 3. Add to *.pck
ECHO 4. Extract *.cup
ECHO 5. Make *.xup
ECHO 6. Exit
@choice.exe /C:123456 /N /D 6 /T 60
IF %ERRORLEVEL% == 1 GOTO COMPRESS
IF %ERRORLEVEL% == 2 GOTO EXTRACT
IF %ERRORLEVEL% == 3 GOTO ADD
IF %ERRORLEVEL% == 4 GOTO CUP
IF %ERRORLEVEL% == 5 GOTO XUP
IF %ERRORLEVEL% == 6 GOTO EXIT
:COMPRESS
set switch=-c
set end=.files
GOTO MAIN
:EXTRACT
set switch=-x
GOTO MAIN
:ADD
set switch=-a
set end=.files
GOTO MAIN
:CUP
set switch=-xp
ECHO Enter the filename of the *.cup
set /p dir=
sPCK %SWITCH% %DIR%
GOTO EXIT
:XUP
set switch=-cp
ECHO Enter the filename of the *.xup
set /p dir=
sPCK %SWITCH% %DIR%
GOTO EXIT
:MAIN
ECHO What file are you working with?
ECHO 1. configs.pck
ECHO 2. models.pck
ECHO 3. gfx.pck
ECHO 4. surfaces.pck
ECHO 5. custom
ECHO 6. exit
@choice.exe /C:123456 /N /D 6 /T 60
IF %ERRORLEVEL% == 1 GOTO CONFIGS
IF %ERRORLEVEL% == 2 GOTO MODELS
IF %ERRORLEVEL% == 3 GOTO GFX
IF %ERRORLEVEL% == 4 GOTO SURFACES
IF %ERRORLEVEL% == 5 GOTO CUSTOM
IF %ERRORLEVEL% == 6 GOTO EXIT
:CONFIGS
sPCK %SWITCH% configs.pck%END%
@GOTO EXIT
:MODELS
sPCK %SWITCH% models.pck%END%
@GOTO EXIT
:GFX
sPCK %SWITCH% gfx.pck%END%
@GOTO EXIT
:SURFACES
sPCK %SWITCH% surfaces.pck%END%
@GOTO EXIT
:CUSTOM
ECHO Enter the name of your *.pck file
set /p dir=
sPCK %SWITCH% %DIR%
:EXIT
ECHO .
pause
Did all that on your second alterative, and so fast i open it, it shut down.
any ideas? lol ;-;
pck extractor.rar
this extrator works perfect its so simple to use it..i hope it helps