Search found 5 matches

by another-tech-guy24
Wed Jun 23, 2021 4:26 pm
Forum: Libraries and Tools
Topic: Proof of concept for multiplayer game
Replies: 2
Views: 9335

Proof of concept for multiplayer game

https://github.com/prashantgupta24/lua-top-down-multiplayer A simple proof-of-concept for a multiplayer game using Love2d! - Both single player and Multiplayer support. Play with your friends on your home Wifi without any additional setup! - Automatic local network searching for host server for mult...
by another-tech-guy24
Tue Jun 15, 2021 4:20 am
Forum: Games and Creations
Topic: A simple multiplayer top-down shooter game
Replies: 0
Views: 19358

A simple multiplayer top-down shooter game

https://github.com/prashantgupta24/lua-top-down-multiplayer A simple proof-of-concept for a multiplayer game using Love2d! - Both single player and Multiplayer support. Play with your friends on your home Wifi without any additional setup! - Automatic local network searching for host server for mul...
by another-tech-guy24
Thu May 13, 2021 6:23 am
Forum: Ports
Topic: Why does the luasocket sample code not work with Love2d 11.3?
Replies: 5
Views: 31768

Re: Why does the luasocket sample code not work with Love2d 11.3?

** update: there was a fix to udp.c on Jun 11, 2015, that adds the socket options to getoption()... ** update 2: I just built LOVE from source... still fails in the same way. Thanks for replying! I tried building love2d using the latest code from the luasocket library (which I think you did as well...
by another-tech-guy24
Thu May 13, 2021 6:20 am
Forum: Ports
Topic: Why does the luasocket sample code not work with Love2d 11.3?
Replies: 5
Views: 31768

Re: Why does the luasocket sample code not work with Love2d 11.3?

the version in the Love2d library is not the same as the most current code in the Luasocket library. That is correct - love 11 has luasocket's source code from July 2016. There hasn't been any new release of luasocket since rc1, but there have been a bunch of commits to its soure code repository. I...
by another-tech-guy24
Wed Apr 28, 2021 5:02 pm
Forum: Ports
Topic: Why does the luasocket sample code not work with Love2d 11.3?
Replies: 5
Views: 31768

Why does the luasocket sample code not work with Love2d 11.3?

I am trying to run the following code using love2d 11.3 on Mac OS Catalina 10.15: https://github.com/diegonehab/luasocket/blob/master/samples/mclisten.lua code: local socket = require"socket" local group = "225.0.0.37" local port = 12345 local c = assert(socket.udp()) print(asser...