Mirage Posted December 9, 2011 Posted December 9, 2011 (edited) Well here it is folks, the question that will determine how long my night will be. Is it possible, to massive convert LUA files -> LUB? Edited December 9, 2011 by Mirage Quote
leadtech Posted December 9, 2011 Posted December 9, 2011 yeah ,,, It's possible .. just use LUAC Quote
Aerie Posted December 9, 2011 Posted December 9, 2011 Here a link : luac5.0.2.exe And how use it : http://www.eathena.ws/board/index.php?showtopic=251329 Quote
Mirage Posted December 9, 2011 Author Posted December 9, 2011 Well...thats one by one. I know that way, I was thinking more of a "all at the same time" converter... Quote
FatalEror Posted December 9, 2011 Posted December 9, 2011 Copy that luac5.0.2.exe in your "Lua Files" folder Create a batch file(eg:convert.bat) Copy paste this to convert.bat and save it... @echo off for /f "usebackq tokens=*" %%a in (`dir /b/s/a:d`) do ( for %%l in (%%~nxa\*.lua) do ( luac5.0.2 -o %%~nxa\%%~nl.lub %%l ) ) for %%l in (*.lua) do ( luac5.0.2 -o %%~nl.lub %%l ) pause Run convert.bat 2 Quote
Mirage Posted December 9, 2011 Author Posted December 9, 2011 Sweet thanks. Worked perfectly ! @dapoks Use notepad++ to make the batch converter Quote
Question
Mirage
Well here it is folks, the question that will determine how long my night will be.
Is it possible, to massive convert LUA files -> LUB?
Edited by Mirage6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.