Search found 8 matches

by Nah-Trowen
Sat Aug 31, 2013 7:56 pm
Forum: General
Topic: The Best Tutorial
Replies: 4
Views: 3136

The Best Tutorial

I'm creating a Lua and Love2d Tutorial for beginners. I want everyone's opinion on what the Tutorials should consist of. For example how much Lua should I teach before moving on to Love2d, In what order should I teach. I what these to be as easy to understand as possible, even without programming kn...
by Nah-Trowen
Mon Jan 21, 2013 7:33 pm
Forum: General
Topic: Networking
Replies: 7
Views: 3997

Re: Networking

So how do I become ready with networking? If you think I shouldn't rush to make a MMO i won't, but how can I make a small multiplayer game in Lua to gain a basic understanding of networking?
by Nah-Trowen
Mon Jan 21, 2013 7:11 pm
Forum: General
Topic: Networking
Replies: 7
Views: 3997

Re: Networking

I understand how big a MMO is and how much time its going to take, but I'm ready to get started. I just need some information about networking and networking in Lua.
by Nah-Trowen
Mon Jan 21, 2013 7:53 am
Forum: General
Topic: Networking
Replies: 7
Views: 3997

Networking

I want to make a MMORPG, I have a good understanding of Love2d and Lua. The only problem is that when it comes to networking I'm clueless. I've watched countless youtube tutorials so I know a few things(very few), but can someone thoroughly explain networking and networking in Love2d?
by Nah-Trowen
Fri Jan 04, 2013 2:37 am
Forum: General
Topic: The require() function.
Replies: 8
Views: 10067

Re: The require() function.

Thanks a lot, really helped!
by Nah-Trowen
Fri Jan 04, 2013 1:50 am
Forum: General
Topic: The require() function.
Replies: 8
Views: 10067

The require() function.

Every time I run my project it gives me the error message : Error main.lua:1:module 'char.lua' not found: no file "char/lua.lua" in LOVE game directories. no extension"char.lua" in LOVE paths. not field package.preload['char.lua'] no file '.\char\lua.lua no file 'C:\Program Files...
by Nah-Trowen
Thu Jan 03, 2013 9:44 am
Forum: General
Topic: love.keyboard.isDown() Function
Replies: 4
Views: 3183

Re: love.keyboard.isDown() Function

Thanks didn't notice that.
by Nah-Trowen
Thu Jan 03, 2013 8:16 am
Forum: General
Topic: love.keyboard.isDown() Function
Replies: 4
Views: 3183

love.keyboard.isDown() Function

Why does all the controls work except the "down"? It fezze and skips. function love.load() char1 = love.graphics.newImage("images/alpha.png") char1x = 0 char1y = 0 end function love.update() if love.keyboard.isDown("right") then char1x = char1x + 1 elseif love.keyboard....