Search found 14 matches

by Socks
Sun Dec 19, 2010 3:35 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

Re: What is LUBE?

Ok, I'll figure out port forwarding later, for now I'm going to work with server-client stuffs. I noticed I cannot do server:send{table} --or client:send{table} So I had to butcher my code to the point where it does not work. Any solutions? EDIT: Nevermind, I'm just going to recreate my entire code =P
by Socks
Sat Dec 18, 2010 11:42 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

Re: What is LUBE?

black magic. Now, see, here's my one problem. Me and a few of my (smarter) friends tried setting up a server for Minecraft on my computer. My router is locked, and although we tried dozens of passwords, we had no luck in unlocking. I'm planning to maybe just reset the entire thing (Can't you just u...
by Socks
Sat Dec 18, 2010 11:22 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

Re: What is LUBE?

Ok, so now that everything's working pretty well, I have to ask if I need to port forward for other's clients to connect to my server.
by Socks
Sat Dec 18, 2010 10:07 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

Re: What is LUBE?

TechnoCat compiled a list of useful resources, and posted that in the lube thread, in this post , to be exact. I just tried require "LUBE" output = {} function onConnect(ip, port) output[#output+1] = "Connection from "..ip end function onReceive(data, ip, port) output[#output+1]...
by Socks
Sat Dec 18, 2010 9:35 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

Re: What is LUBE?

Could you explain how I use it in simple n00b terms? You say "could YOU explain" as if the love forums were a person. LUBE is a networking library, and using it isn't as easy as someone just saying "type this". It might be a little advanced for a "n00b", though I've ne...
by Socks
Sat Dec 18, 2010 8:38 pm
Forum: Support and Development
Topic: What is LUBE?
Replies: 11
Views: 4187

What is LUBE?

Could you explain how I use it in simple n00b terms?
by Socks
Fri Dec 17, 2010 2:25 am
Forum: Support and Development
Topic: Corners from body?
Replies: 1
Views: 1069

Corners from body?

Making a shape with :getBoundingBox() is ok, but if it rotates, the bounding box does not. Is there any way to get the corners of a shape?
by Socks
Mon Dec 06, 2010 1:40 am
Forum: Support and Development
Topic: love.physics causes C++ errors.
Replies: 11
Views: 4583

Re: love.physics causes C++ errors.

TechnoCat wrote:Are you updating your world?
http://love2d.org/wiki/World:update
That was it, thanks.
TechnoCat wrote:Also, have you looked at this yet? http://love2d.org/wiki/Tutorial:Physics
Yeah. I must have missed that part.
by Socks
Mon Dec 06, 2010 1:11 am
Forum: Support and Development
Topic: love.physics causes C++ errors.
Replies: 11
Views: 4583

Re: love.physics causes C++ errors.

I fixed that, still nothing.
by Socks
Mon Dec 06, 2010 12:42 am
Forum: Support and Development
Topic: love.physics causes C++ errors.
Replies: 11
Views: 4583

Re: love.physics causes C++ errors.

I figured this would be it: newbody = #bodies + 1 graphics[#graphics + 1] = {fx,fy,rx,ry} bodies[newbody] = love.physics.newBody(world,fx,fy,0,10) shapes[newbody] = love.physics.newRectangleShape(bodies[newbody],0,0,rx,ry,0) bodies[newbody]:setMassFromShapes() fx,fy,rx,ry = 0,0,0,0 But I also have t...