Search found 49 matches

by icekiller8002
Thu Aug 02, 2018 9:20 pm
Forum: Games and Creations
Topic: draw crud
Replies: 0
Views: 2188

draw crud

i made a short and simple test game that allows you to draw. here are all of the controls: left click to draw right click to erase < (,) and > (.) to decrease/increase brush size spacebar to toggle color changer up and down arrows (in color changer) to change to red, green, or blue left and right ar...
by icekiller8002
Tue Jul 31, 2018 7:58 pm
Forum: Games and Creations
Topic: 2D platformer
Replies: 4
Views: 6925

Re: 2D platformer

Ekamu wrote: Thu Jul 26, 2018 9:42 am how do you jump?
sorry for the really late reply. i did not implement jumping, as i couldn't get it to work without collision bugs. so i added ladders to replace jumping.
by icekiller8002
Thu Jul 05, 2018 7:48 pm
Forum: General
Topic: [solved] is there a better way to code this?
Replies: 3
Views: 3821

[solved] is there a better way to code this?

i am trying to remove blocks in these three coordinates. this is the best working solution i came come up with: for x,b in ipairs(blocks) do if (b.tx == 99 or b.tx == 101 or b.tx == 103) and b.ty == 11 then table.remove(blocks,x) end end for y,c in ipairs(blocks) do if c.tx == 101 and c.ty == 11 the...
by icekiller8002
Sun Jun 24, 2018 12:11 am
Forum: Games and Creations
Topic: 2D platformer
Replies: 4
Views: 6925

2D platformer

i made a little 2d platformer with an image of the map that is editable. this may be used in a future game, but i mainly wanted to test this.

Total lines of code: 239
by icekiller8002
Thu Jun 21, 2018 7:05 pm
Forum: Games and Creations
Topic: Hangman Game
Replies: 5
Views: 5419

Re: Hangman Game

1. what do you mean by battle royal mode? 2. this was simply just a test and i wanted to show it off. this is why you shouldn't expect much. I wouldn't take them too seriously :awesome: We're all a friendly bunch. The Battle Royal mode is currently a bit of a meme with some major franchises (more n...
by icekiller8002
Wed Jun 20, 2018 11:05 pm
Forum: Games and Creations
Topic: Hangman Game
Replies: 5
Views: 5419

Re: Hangman Game

1. what do you mean by battle royal mode?
2. this was simply just a test and i wanted to show it off. this is why you shouldn't expect much.
by icekiller8002
Wed Jun 20, 2018 6:03 pm
Forum: Games and Creations
Topic: Hangman Game
Replies: 5
Views: 5419

Hangman Game

i was playing a hangman game on a minecraft server, which is why i decided to make one in love2d. feel free to browse the source code.
by icekiller8002
Wed May 02, 2018 12:01 am
Forum: Games and Creations
Topic: Improved Collision Test Game
Replies: 4
Views: 4819

Improved Collision Test Game

I'm thinking of making a game like what you see on the .love project, so I went ahead and made one to test core features
by icekiller8002
Fri Apr 20, 2018 12:10 am
Forum: Games and Creations
Topic: Collision Test Game
Replies: 0
Views: 1739

Collision Test Game

I made a short collision test. I provided a .love just in case if you wanna look at the source code.
by icekiller8002
Tue Apr 10, 2018 7:19 pm
Forum: Support and Development
Topic: Is there an effective way to cut down lag?
Replies: 26
Views: 18381

Re: Is there an effective way to cut down lag?

The main thing I was worried about was that the lag would affect everyone, not just people with graphics cards like mine. Thank you all for helping. I’ll continue to play around with it.