Closed RedAISkye closed 3 years ago
Yes the Encryption option isnt possible yet over the GUI, you can however encrypt via the Command-Line... Sadly Encryption could require multiple inputs and i didnt decided how to do it yet...
Beside this issue dont belongs to the Web-Project
I tried it via command-line and it's giving me an error:
Edit: Nevermind, works after I run it as administrator.
Please send what commend you used
Please send what commend you used
Ah, I think you're replying via email so you didn't see the edit but It's working fine, I just had to run the batch file as administrator.
But here's the code:
@echo off
title RPG Maker MV;MZ Decrypter ^| Encryption Command-Line Tool by RedAISkye
cls
set currentDir=%~dp0
cd /d %currentDir%
echo.
echo.
echo Enter project path: (Leave blank ^for default "%currentDir%encrypt")
set /p projectPath=
echo.
echo.
if "%projectPath%"=="" (
set projectPath=%currentDir%encrypt
echo Enter encryption key: ^(Can't be left blank^)
) else (
echo Enter encryption key: ^(Leave blank ^for default "auto"^)
)
set /p encryptionKey=
if "%encryptionKey%"=="" set encryptionKey=auto
echo.
echo.
java -jar "RPG Maker MV Decrypter.jar" encrypt "%projectPath%" "%currentDir%output" true %encryptionKey%
echo.
echo.
pause
As you can see by the screenshot, the option to encrypt files is greyed out so is it disabled for some reason?
Because, on the website, there's no issue encrypting files.