PulsarLua
*********

Installation
------------

Extract the archive anywhere you want. 
Put the filetype.lua in the appropriate folder of your Geany installation for syntax highlighting.

Please make sure that you have installed the following libraries under Linux:
- libSDL2
- libSDL2_image
- libSDL2_mixer
- liblua5.2



How to create an executable 
---------------------------

Since the official documentation isn't finished yet, I'd like to show you how you can create an executable with PulsarLua. You'll need those two app: makeexe(.exe) and p2dencrypt(.exe). This works for both, Windows and Linux.

1. If you'll have a finished Lua script, then encrpyt it like the following (via the command line):
	p2dencrypt myscript.lua
A new script called encryptedmyscript.lua will be generated.
2. Now you can make it an executable:
	makeexe [path]/pulsarlua(.exe) [path]/encryptedmyscript.lua [path]outputfile(.exe)
Of course you'll need the ending .exe only on Windows operating systems.


