
Search found 10 matches
- Wed Apr 12, 2023 8:46 pm
- Forum: Games and Creations
- Topic: Game for Chess Players! :D Free!, No ADS!
- Replies: 2
- Views: 1989
Re: Game for Chess Players! :D Free!, No ADS!
Thanks for your comments, I'm glad you played it 

- Tue Apr 11, 2023 7:56 pm
- Forum: Games and Creations
- Topic: Game for Chess Players! :D Free!, No ADS!
- Replies: 2
- Views: 1989
Game for Chess Players! :D Free!, No ADS!
Hi!, my name is Alejandro Hernández from Mexico and i'm very excited to show you my new APP!. _________________________________________ moMb7t6.png Free and without ads! :3 You can download it now and start training your calculation with all the dificult levels!, It is more difficult than it looks ...
- Mon Mar 06, 2023 2:04 pm
- Forum: Games and Creations
- Topic: Towers of Hanoi with CATS! NOW IN PLAY STORE FREE!
- Replies: 8
- Views: 3307
Re: Towers of Hanoi with CATS! NOW IN PLAY STORE!
also in itch.io 

- Mon Mar 06, 2023 2:02 pm
- Forum: Games and Creations
- Topic: Towers of Hanoi with CATS! NOW IN PLAY STORE FREE!
- Replies: 8
- Views: 3307
Re: Towers of Hanoi with CATS! NOW IN PLAY STORE!
Thank you very much for your comments, I actually put a price on it because it was the only way to get paid since I still don't know how to put ads (since the vast majority of tower of hanoi games have that). But thinking about it, they are very right and I don't think anyone will pay for it, so I d...
- Mon Mar 06, 2023 4:56 am
- Forum: Games and Creations
- Topic: Towers of Hanoi with CATS! NOW IN PLAY STORE FREE!
- Replies: 8
- Views: 3307
Re: Towers of Hanoi with CATS! NOW IN PLAY STORE!
I just released the app on google play store, check it out here
- Thu Mar 02, 2023 4:03 pm
- Forum: Games and Creations
- Topic: [PROTOTYPE] 2-Player game :3
- Replies: 2
- Views: 1726
[PROTOTYPE] 2-Player game :3
Hi, i'm working in a local-multiplayer game of spaceships, it is in develop but i want share with you a demo.
Visit my page on itch.io: https://k7vell.itch.io/retro-war
Visit my page on itch.io: https://k7vell.itch.io/retro-war

- Wed Mar 01, 2023 6:29 pm
- Forum: Games and Creations
- Topic: Towers of Hanoi with CATS! NOW IN PLAY STORE FREE!
- Replies: 8
- Views: 3307
- Mon Feb 06, 2023 2:22 pm
- Forum: Support and Development
- Topic: How can i do a http request to firebase?
- Replies: 2
- Views: 1993
How can i do a http request to firebase?
I'm trying make a http request to my firebase realtime database using lua but don't work and i don't know why. This is the code i use: local http = require("socket.http") local json = require "json" local body, code, headers, status = http.request { method = "POST", url...
- Sun Jan 08, 2023 5:57 pm
- Forum: Games and Creations
- Topic: Block Dash 1.0 is Out Now!
- Replies: 11
- Views: 6937
- Fri Aug 12, 2022 3:39 pm
- Forum: Support and Development
- Topic: Images
- Replies: 4
- Views: 2779
Re: Images
Use this for load the image:
and this for draw it
Code: Select all
function love.load()
image = love.graphics.newImage("name.png")
end
Code: Select all
function love.draw()
love.graphics.draw(image, x, y)
end