Search found 8 matches
- Sat Aug 31, 2013 7:56 pm
- Forum: General
- Topic: The Best Tutorial
- Replies: 4
- Views: 3217
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...
- Mon Jan 21, 2013 7:33 pm
- Forum: General
- Topic: Networking
- Replies: 7
- Views: 4089
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?
- Mon Jan 21, 2013 7:11 pm
- Forum: General
- Topic: Networking
- Replies: 7
- Views: 4089
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.
- Mon Jan 21, 2013 7:53 am
- Forum: General
- Topic: Networking
- Replies: 7
- Views: 4089
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?
- Fri Jan 04, 2013 2:37 am
- Forum: General
- Topic: The require() function.
- Replies: 8
- Views: 10369
Re: The require() function.
Thanks a lot, really helped!
- Fri Jan 04, 2013 1:50 am
- Forum: General
- Topic: The require() function.
- Replies: 8
- Views: 10369
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...
- Thu Jan 03, 2013 9:44 am
- Forum: General
- Topic: love.keyboard.isDown() Function
- Replies: 4
- Views: 3300
Re: love.keyboard.isDown() Function
Thanks didn't notice that.
- Thu Jan 03, 2013 8:16 am
- Forum: General
- Topic: love.keyboard.isDown() Function
- Replies: 4
- Views: 3300
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....