Expect fun games with my fingerprints on them (literally or not) to be made soon!
Also, I made a nice .love/.zip file converter - probably not the first one -, and it's free! FREE THINGS ARE ALWAYS WELCOMED, ESPECIALLY WHEN THEY COST NOTHING!
Copy this code into a text editor and save it as "themostawesomedotziptodotlove&viceversafileconverter.bat" (or whatever you like, but make sure its extension is .bat, or else it may explode)
To convert a .love file to a .zip folder (and vice versa), drag & drop it on the .bat file you just created.
Code: Select all
IF EXIST "%~dpn1.love" (
ren "%~dpn1.love" *.zip
) else (
IF EXIST "%~dpn1.zip" (
ren "%~dpn1.zip" *.love
))
P.S. I apologize for any grammar mistakes. English is not my native language.