Poll

.

|
4 (17.4%)
|
4 (17.4%)
|
4 (17.4%)
|
4 (17.4%)
|
7 (30.4%)

Total Members Voted: 23

Author Topic: That Falling Box Game - v0.7  (Read 15990 times)

DONE.

check le changelog

Asdf
Gonna get up early to play, brb sleeping.



How to play multiplayer?

How to play multiplayer?
you would host a server and then join the server host's IP

in your case if you just wanted to join your own server, you would put 127.0.0.1, and that would go for everyone else in the same network as you

everyone outside your network joins your external IP, which can be gained from a website like whatsmyip.org

same mechanics as minecraft multiplayer, basically

what kind of protoco-

same mechanics as minecraft multiplayer, basically

no

what kind of protoco-

no
i just meant that hosting and joining servers worked in the same way as minecraft

not the servers themselves :U

i just meant that hosting and joining servers worked in the same way as minecraft

not the servers themselves :U

what kind of protocol


Code: (LUA) [Select]
--- Pack a table
-- Does what you'd expect
-- @param t Table to pack
function lube.bin:pack(t)
local result = ""
for i, v in pairs(t) do
result = result .. self:packvalue(i, v)
end
return result
end

--- Pack a single value
-- Internal, do not use
-- @see lube.bin:pack
function lube.bin:packvalue(i, v)
local id = ""
local typev = type(v)
if typev == "string" then id = "S"
elseif typev == "number" then id = "N"
elseif typev == "boolean" then id = "B"
elseif typev == "userdata"  then id = "U"
elseif typev == "function" then
id = "F"
v = string.dump(v)
elseif typev == "nil" then id = "0"
else error("Type " .. typev .. " is not supported by lube.bin") return
end
return tostring(id .. lube.bin.one .. i .. lube.bin.one .. tostring(v) .. lube.bin.null)
end

Please tell me you aren't seriously transmitting commands as strings.

aaaaaaaaaa
released at 9 PM wtf,
Well
Parents
I am 15, but I don't mind some regularity.

EDIT: Join my server
Add Katadeus on steam and message me if you want to, because I won't host all day.
« Last Edit: May 20, 2012, 05:53:15 AM by Katadeus »

Badspot completely DESTROYED Your Mother
Katadeus OVERPOWERED Kingdaro's Laziness


MAKE MORE AIS PLZ I WANA B WUN

EDIT: That One Guy OVERPOWERED U. S. Government

Also why are there no powerups when you max out the number of AI?
« Last Edit: May 20, 2012, 06:33:35 AM by Katadeus »

Also why are there no powerups when you max out the number of AI?
that is the most ridiculous thing i've ever heard haha

Well
Parents
I am 15, but I don't mind some regularity.
and I'm 14 in 9 days but I still go to sleep

anyways I'm up now and asdfghjkl playplayplay

EDIT: Oh yeah, and I'd like to point out that if you make a regular file in your .zip file with all the stuff in it, it makes it a ton easier to just pull the regular file out of the .zip instead of
>make a new file
>copy paste all the crap
>delete the .zip.

EDIT2: okay yes I don't like making double posts >:C

I meant to ask this first off; you mean that we should give each other our IP's to connect to each others servers, and 127.0.0.1 just connects locally, right?
« Last Edit: May 20, 2012, 12:20:50 PM by .:FancyPants:. »