How to launch a lua server?

0

I wanted to know how to launch a lua server. I found a game I'd like to play with friends, though we do not know how to start the server that is .lua.

The game is here. Could you help us please?

Utilisatrice

Posted 2015-09-05T16:57:43.313

Reputation: 11

1

No idea what that game is, but this type of question is not appropriate for this site. Also, if you go to the URL page above the ZIP it seems to load something. http://www.module801.com/bloup/

– JakeGould – 2015-09-05T18:05:04.303

Yes, and the game is open source. But i don't know how to launch the .lua... – Utilisatrice – 2015-09-05T20:19:47.153

Answers

1

Are you on Windows or Linux?

If Windows, get the LuaForWindows binaries from https://github.com/rjpcomputing/luaforwindows

If Linux, get the lua package from your distro's repository.

Then, open a command prompt and run the line:

lua /path/to/file/somefile.lua

using your own filepath of course. See if the server launches that way.

Ensayia

Posted 2015-09-05T16:57:43.313

Reputation: 86

0

If you are on Windows: Download Lua from here.
For Linux check this website.
After you downloaded them either put the files in your current working directory or in the folder you want to execute them from.
Finally run this:
lua ./path/of/server.lua

Folfy Blue

Posted 2015-09-05T16:57:43.313

Reputation: 1