Search found 322 matches

by appleide
Sat Jun 12, 2010 8:24 am
Forum: Games and Creations
Topic: Ten Second War
Replies: 32
Views: 19553

Re: Ten Second War

This game looks awesome! I want to play but the file is dead from forum crash :(
by appleide
Sun May 30, 2010 4:18 pm
Forum: Libraries and Tools
Topic: LoveUI for love 0.6.0
Replies: 18
Views: 19459

Re: LoveUI for love 0.6.0

Someone asked me to reupload LoveUI for LÖVE 0.6.2... Here it is... Are there any examples that demonstrate scrollers and tableview? The documentation only really seems to explain the most basic components and the comments on the more advanced ones seem lacking. Hmm I have no scrollers or tableviews...
by appleide
Fri Apr 23, 2010 1:46 am
Forum: Libraries and Tools
Topic: Goo: Gui and Animation library.
Replies: 63
Views: 59477

Re: Goo: Gui and Animation library.

This is awesometastic. :)
by appleide
Fri Apr 23, 2010 1:37 am
Forum: Games and Creations
Topic: Merchant (A loving tycoon game)
Replies: 11
Views: 6346

Re: Merchant (A loving tycoon game)

appleide likes this. *thumbs up*.
by appleide
Fri Mar 19, 2010 1:29 pm
Forum: General
Topic: Why this project is so great
Replies: 6
Views: 4281

Re: Why this project is so great

I was looking at the forums in class... my friend looked at the screen, then at me, and was shaking his head. :x
by appleide
Fri Mar 19, 2010 12:22 pm
Forum: Libraries and Tools
Topic: So you have a crappy computer
Replies: 18
Views: 14270

Re: So you have a crappy computer

Pillows
by appleide
Sun Feb 07, 2010 8:58 am
Forum: General
Topic: Finding the minimum value... (not math.min)
Replies: 12
Views: 5229

Re: Finding the minimum value... (not math.min)

Code: Select all

function min_index(first, ...)
	return math.min(first, ...) == first and 1 or min_index(...) + 1
end

function test(...)
	print(min_index(...))
end

test(1, 2, 3, 4) -- prints 1

test(4, 3, 1, 5, 6, 7) -- prints 3
Who needs for loops 8-)
by appleide
Sun Feb 07, 2010 5:59 am
Forum: Support and Development
Topic: Love for iPhone?
Replies: 8
Views: 8361

Re: Love for iPhone?

Maybe, but I thought they don't let programs that can interpret code?

EDIT: I meant "I think they don't let you distribute applications that can run scripts on itunes store"... was a bit rude, sorry.
by appleide
Sun Feb 07, 2010 3:33 am
Forum: Games and Creations
Topic: Pröxima - A Space RTS
Replies: 53
Views: 28314

Re: Pröxima - A Space RTS

My screen is 1280 x 800 so I have to use 1024 * 768 sometimes... not all games support widescreen :( .
by appleide
Sat Feb 06, 2010 4:47 pm
Forum: Games and Creations
Topic: Spacing out
Replies: 62
Views: 18856

Re: Spacing out

They've got good art, good music and good programming... But one thing they lack at the moment is a finished story line and campaigns. There's some missions but you could finish the game in 2 days. =) It's open-source so you can also fork it if you want. The missions are written in lua, too.