can't coding | Thank you for reading, testing, have fun and good luck
- copy the resource.car file to the DAY-R folder.
- Run the command
python3 main.pyon the terminal.
python3 main.py
- unpack - extract the resource.car file to the resource folder
- decompile - decompile .lu to .lua
- pack - repack the extracted file, so resource.car
Note: luac.exe to compile .lua extension to .lu
unpack:
- create a folder to store the files to be extracted
- run the following command
corona-archiver.exe -u resource.car folder_name
pack:
corona-archiver.exe -p folder_name resource.car
decompile from .lu to .lua:
java -jar file_name.lu > file_name.lua
compile .lua to .lu:
luac.exe -o output_name.lu file_name.lua
