Search found 105 matches

by PGUp
Sun Jun 16, 2019 2:26 pm
Forum: Libraries and Tools
Topic: Groverburger's 3D Engine (g3d) v1.5.2 Release
Replies: 218
Views: 470016

Re: Groverburger's Super Simple 3D Engine - v1.2

I added a simple obj file loader, credits to: https://github.com/karai17/lua-obj
loader.zip
(341.23 KiB) Downloaded 812 times
by PGUp
Sat Jun 15, 2019 4:41 pm
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

Re: enet cannot create any server

my ipv4 adress suddenly changed itself, i ran ipconfig command and it was definitely changed. it was Ethernet adapter Ethernet: IPv4 Address. . . . . . . . . . . : 192.168.100.7(Preferred) to Ethernet adapter Ethernet: IPv4 Address. . . . . . . . . . . : 192.168.100.3(Preferred) i created server on ...
by PGUp
Thu Jun 13, 2019 4:52 pm
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

Re: enet cannot create any server

You're misunderstanding. The server does not care what the ip address is, only clients trying to connect care. the system hosting a server will always be localhost, thus you shoudl put localhost or 127.0.0.1 as the ip address, and then from the system trying to connect to the server, you'd use your...
by PGUp
Thu Jun 13, 2019 11:33 am
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

Re: enet cannot create any server

Is that IP available on your machine? Is the port available? Are you using a firewall? Does 0.0.0.0 work as an IP? yeah, localhost, localhost ip, 0.0.0.0 ip works, but any other ip wont workm I've tried multiple different ip and ports, none of it works, random ip or ports dont work, i tried ipconfi...
by PGUp
Thu Jun 13, 2019 4:10 am
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

Re: enet cannot create any server

Your ip address and port combo is causing host_create to fail. If you use 127.0.0.1:8888 as the ip port combo it will work the ip of 127.0.0.1 is the same as localhost, I'm not planning to use a localhost server, I want to connect multiple devices together. Yes, but you should be creating host at t...
by PGUp
Wed Jun 12, 2019 5:25 pm
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

Re: enet cannot create any server

bobbyjones wrote: Wed Jun 12, 2019 2:23 pm Your ip address and port combo is causing host_create to fail. If you use 127.0.0.1:8888 as the ip port combo it will work
the ip of 127.0.0.1 is the same as localhost, I'm not planning to use a localhost server, I want to connect multiple devices together.
by PGUp
Wed Jun 12, 2019 2:02 pm
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13710

[SOLVED] enet cannot create any server

Code: Select all

enet = require 'enet'
function love.load()
host = enet.host_create("192.16.100.7:6789")
end

function love.update()
event = host:service(100)

event = host:service()
end
the host is nil, what do? any suggestions?
by PGUp
Wed Jun 12, 2019 8:06 am
Forum: Support and Development
Topic: sock.lua, cannot create any server
Replies: 2
Views: 4028

sock.lua, cannot create any server

local sock = require 'sock' function love.load() server = sock.newServer("192.168.100.1", 22122) end Error sock.lua:1327: Failed to create the host. Is there another server running on :22122? Traceback [C]: in function 'error' sock.lua:1327: in function 'newServer' main.lua:16: in functio...
by PGUp
Tue Jun 11, 2019 10:52 am
Forum: Libraries and Tools
Topic: Groverburger's 3D Engine (g3d) v1.5.2 Release
Replies: 218
Views: 470016

Re: Groverburger's Super Simple 3D Engine - v1.2

world position to screen position please?
by PGUp
Mon May 20, 2019 2:50 pm
Forum: Support and Development
Topic: enet broadcast behaviour
Replies: 1
Views: 2578

enet broadcast behaviour

I dont seem to understand host:broadcast() function.. is it to send a package from a peer to the server or send a package from server to all connected peer only? It seems to work both ways, but when I do it from the peer side, it fails most of the time to send it.. but it also works sometimes, what'...