Awesome, I'm going to try it out!
Will it possible to reference external Love2D libraries?
Search found 6 matches
- Sun Dec 04, 2016 1:02 am
- Forum: General
- Topic: What's everyone working on? (tigsource inspired)
- Replies: 1804
- Views: 1722531
Re: What's everyone working on? (tigsource inspired)
I started to create my own library that's heavily influenced by GLua . So far, I've implemented a hook library, timer library and a few other useful things. I'll be working on a net library using lua-enet in the future as well. Here's some example code in main.lua: -- require stuff local function cr...
- Mon Nov 28, 2016 1:13 am
- Forum: Support and Development
- Topic: Enet and hamachi not working
- Replies: 8
- Views: 6038
Re: Enet and hamachi not working
This exactly. No router access - I don't pay for the internet so my parents don't want me hosting stuff - until I can get a server on my own.zorg wrote:you can't forward ports on your router/etc.
Otherwise, I would've just forwarded the port by now.
- Mon Nov 28, 2016 12:32 am
- Forum: Support and Development
- Topic: Enet and hamachi not working
- Replies: 8
- Views: 6038
Re: Enet and hamachi not working
Well, this is embarrassing. I didn't have the hamachi network driver installed for some reason. I installed it and now everything is working fine, I can also use my hamachi ip for connecting and hosting now!
Thanks anyways
Thanks anyways
- Sun Nov 27, 2016 10:28 pm
- Forum: Support and Development
- Topic: Enet and hamachi not working
- Replies: 8
- Views: 6038
Re: Enet and hamachi not working
No luck This is quite frustrating. I've had another friend test it as well.
I'm hoping I don't have to move over to another networking library. :/
I'm hoping I don't have to move over to another networking library. :/
- Sun Nov 27, 2016 7:51 pm
- Forum: Support and Development
- Topic: Enet and hamachi not working
- Replies: 8
- Views: 6038
Enet and hamachi not working
Clientside host = enet.host_create() server = host:connect("localhost:7302") Serverside host = enet.host_create("localhost:7302", 2500) :cry: I tried putting my hamachi's IPv4 address in host_create on the server's side as well but it would return nil. I also tried putting my ham...