Search found 48 matches

by meoiswa
Tue Mar 27, 2012 1:40 pm
Forum: General
Topic: LÖVE on PSP
Replies: 13
Views: 7299

Re: LÖVE on PSP

I didn't know different PSPs had different RAMS, does that mean you can't play any game in the 1st gen PSP?! :o
by meoiswa
Mon Mar 26, 2012 7:47 pm
Forum: Games and Creations
Topic: Roppongi Plus
Replies: 18
Views: 8570

Re: Roppongi Plus

I remember playing a game like this from somewhere sometime in my childhood, but I can't really remember :<. Good game! :D
by meoiswa
Mon Mar 26, 2012 7:30 pm
Forum: Ports
Topic: Love2D WebPlayer (WebGL)
Replies: 203
Views: 189653

Re: Love2D WebPlayer

This just keeps getting better! I bet in a year we'll be seeing Love in the Chrome web store and in Chromium devices! I tried playing some demos in my ASUS whatever-its-name-was instant boot linux and it worked pretty well (The sinescroller lagged so bad it almost crashed the thing, but the jumping ...
by meoiswa
Mon Mar 26, 2012 7:11 pm
Forum: Games and Creations
Topic: microCrawler, a tamagotchi-like game
Replies: 10
Views: 6739

Re: microCrawler, a tamagotchi-like game

bartbes wrote:Forgot the attachment?
Pretty much :b boss called me to discuss something and in the rush I clicked Submit without adding the loves
by meoiswa
Mon Mar 26, 2012 6:34 pm
Forum: Games and Creations
Topic: microCrawler, a tamagotchi-like game
Replies: 10
Views: 6739

microCrawler, a tamagotchi-like game

I'm making a game remotely based on this idea: http://www.squidi.net/three/entry.php?id=22 This is a tamagotchi-like game, where you have your own hero and he goes on dungeon-crawling in randomly-generated dungeons. The game play will be very simple, you have 3 buttons, "A":attack, force y...
by meoiswa
Wed Mar 21, 2012 12:32 am
Forum: Support and Development
Topic: Problem with Libraries
Replies: 32
Views: 15326

Re: Problem with Libraries

Thats where you putting your brain into thought-processing-mode is required
by meoiswa
Tue Mar 20, 2012 12:08 am
Forum: Games and Creations
Topic: NetWars - beta
Replies: 48
Views: 47624

Re: NetWars - beta

I can't even open the URL D: I really wanted to try this!
by meoiswa
Mon Mar 19, 2012 11:56 pm
Forum: Support and Development
Topic: Problem with Libraries
Replies: 32
Views: 15326

Re: Problem with Libraries

There are much simpler ways. Try this exercise. Try and explain to yourself what is the ground as simply as possible, isn't it something that stops you from falling when you touch it? Then you can deduce that you could simulate the interaction between yourself and the ground by having an object in c...
by meoiswa
Mon Mar 19, 2012 7:14 pm
Forum: Support and Development
Topic: Dynamically call different child tables.
Replies: 4
Views: 2263

Re: Dynamically call different child tables.

Are you tying to do something like this? table = {} table.a = "The first" table.b = "The third" table.c = "Da fudge?" function printThis(str) if table[str] then print(table[str]) else print("There is no value at intex "..str.." in the table") end end...
by meoiswa
Mon Mar 19, 2012 7:09 pm
Forum: Support and Development
Topic: Problem with Libraries
Replies: 32
Views: 15326

Re: Problem with Libraries

Trying to make a *networked game without enough programming ability is likely to be a waste of your time. I'd suggest you rather try making small demos and prototypes first. Anyways, networking is a mildly complex topic in programming, and more so in gaming, you will need a proper understanding of c...