Search found 10 matches

by k1ngS4krifice
Wed Apr 12, 2023 8:46 pm
Forum: Games and Creations
Topic: Game for Chess Players! :D Free!, No ADS!
Replies: 2
Views: 1467

Re: Game for Chess Players! :D Free!, No ADS!

Thanks for your comments, I'm glad you played it :D
by k1ngS4krifice
Tue Apr 11, 2023 7:56 pm
Forum: Games and Creations
Topic: Game for Chess Players! :D Free!, No ADS!
Replies: 2
Views: 1467

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 ...
by k1ngS4krifice
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: 2410

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...
by k1ngS4krifice
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: 2410

Re: Towers of Hanoi with CATS! NOW IN PLAY STORE!

I just released the app on google play store, check it out here
by k1ngS4krifice
Thu Mar 02, 2023 4:03 pm
Forum: Games and Creations
Topic: [PROTOTYPE] 2-Player game :3
Replies: 2
Views: 1229

[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
Image
retrowar.love
(731.06 KiB) Downloaded 62 times
by k1ngS4krifice
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: 2410

Towers of Hanoi with CATS! NOW IN PLAY STORE FREE!

I'm very excited, I just launched my first game.
I'm new to game development, I would really appreciate it if you guys could play my game and critique it to see what I can improve :) :awesome:

Available in: itch.io
Available in: PlayStore

Image
by k1ngS4krifice
Mon Feb 06, 2023 2:22 pm
Forum: Support and Development
Topic: How can i do a http request to firebase?
Replies: 2
Views: 1571

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...
by k1ngS4krifice
Sun Jan 08, 2023 5:57 pm
Forum: Games and Creations
Topic: Block Dash 1.0 is Out Now!
Replies: 11
Views: 5512

Re: Block Dash 1.0 is Out Now!

cool! :D
by k1ngS4krifice
Fri Aug 12, 2022 3:39 pm
Forum: Support and Development
Topic: Images
Replies: 4
Views: 2487

Re: Images

Use this for load the image:

Code: Select all

function love.load()
	image = love.graphics.newImage("name.png")
end
and this for draw it

Code: Select all

function love.draw()
	love.graphics.draw(image, x, y)
end