About 50 results
Open links in new tab
  1. decompiler - How to decompile a Lua file? - Stack Overflow

    Nov 21, 2020 · 4 I have a lua file, which, when opened in Notepad++ shows a mixture of English (uncorrupted), understandable text, as well as a mixture of "NULS" "ETX's" and other strange …

  2. How to open a lua file on text editor using windows 10

    May 11, 2020 · I want to open a .Lua file on a text editor, I have tried most of the text editors but its still didn't let me. is there any process that i need to do to open the file like we usually doing to open...

  3. How do I see a bin file in a hex editor in Visual Studio Code?

    Dec 12, 2018 · Open the file/image/whatever you want to display in hex mode in Visual Studio Code, then press Ctrl + Shift + Alt + H. Or press Ctrl + P then input Show hexdump from path to open a file …

  4. How to read data from a file in Lua - Stack Overflow

    How to read data from a file in Lua Asked 13 years, 10 months ago Modified 1 year, 8 months ago Viewed 211k times

  5. lua code deobfuscation - Stack Overflow

    The tricky part is that loadstring and related functions accepts both lua code and lua byte code. That call to loadstring is just being passed byte compiled lua rather than lua source code. You can get byte …

  6. Lua bytecode to readable - Stack Overflow

    May 14, 2018 · This is probable Lua 5.1 bytecode. You can save it to a file and run luac -l on it to see its contents. Converting it to Lua source code is not trivial. There are some tools that do a partial job, …

  7. How do I call a Lua script from an HTML5 script/file/page

    Most of the CGI and Lua I have played with involve generating the web page and inserting the dynamic bits, rather than calling a script from a web page. So more like option C from your original question. …

  8. Display contents of tables in lua - Stack Overflow

    Feb 5, 2017 · What I'm trying to do is display the content of table using the following code in Lua.

  9. lua - How to dump a table to console? - Stack Overflow

    Feb 7, 2012 · The output also keeps lua syntax and the script can easily be modified for simple persistent storage by writing the output to file if modified to allow only number, boolean, string and …

  10. lua 5.4 - Can I access a variable in my lua script from another ...

    Aug 18, 2020 · I have two Lua script files. I want to import file B into file A and allow file A to access the functions/variables of file B. Is this possible? I'm using Lua 5.4. A.lua -- File A - Returns Nil, even