Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Hi, any chance you could publish the game's source code? I want to make a game in PuzzleScript and it would be great help.

(+1)

I won't publish the whole code, but is there anything specific you want? (ex. rules, levels)

(+1)

I would like to know how the playe's sprite moves and how it collides with the existing blocks with the board, thanks a lot!

(+1)

Ok, here's the segment of code I used for the player's movement. "Cursor" is a transparent object which leads the player, and "Blocks" is a group of objects that the player cannot move through

(------------ Player sliding movement ------------------)
[ Player | Cursor ] -> [ > Player | ] (If the cursor is adjacent, the player moves to the cursor and deletes it)
[ > Player | no Blocks | ] -> [ > Player | | Cursor ] again (If the player moves, and nothing blocks it, the cursor is added back)
[ Cursor Blocks ] -> [ Blocks ] (When the cursor is on something that blocks the player, it is deleted)
(-----------------------------------------------------)
(+1)

This is great help, thanks a lot!