Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GodofGrunts

12
Posts
1
Topics
3
Followers
4
Following
A member registered Apr 18, 2016 · View creator page →

Creator of

Recent community posts

Interesting idea. Would probably be more fun if the AI had tendencies to learn like "Game 1, blue paddle prefers to be in the left side of screen, red likes to go one direction for 5 seconds and then switch" and you have to get to 10 or something. Game 2 is a different pattern for the player to learn, etc.

Great premise! The idea of having to lose, but making it look like you put up a fight isn't something I've seen before as a goal. I really think this idea could go places if given some more love (right now it's easy to cheese the game by not letting the knight ever heal since you can switch from Strike and Defend over and over)

Pretty fun twist on an endless run game! I'm not sure what the comet does as it seems to be just a distraction, but the 4 axis movement of the environment is pretty interesting.

The man is basically uncontrollable for me. I click him and he moves slightly but I can't click to control where he goes? The woman works intuitively.

You basically have to harvest everything and go back to the fire to get warm, but nothing else really seems to happen.

Feels like this game has a lot of potential, but either I'm too dumb to figure out what to do or it's just still in the prototyping phase. I managed to keep my guy alive until the death bar took him out, but I couldn't figure out how to interact with the elements that "didn't do anything" such as the mouse hole or the refrigerator.

GDScript is the scripting language used in the game engine Godot. It is similar to Python, but not quite the same.

There's now a "Back to Title" option in the escape menu which should stop soft locks like this :)

Thanks for the clarification!

(1 edit)

I know you specified the license in the description, but you should also include a copy of the license in your download so it's easier to reference later if someone uses your code.


Also the license in the "More Information" is listed as MIT which is different from your description that says CC BY 3.0.

Thanks for the great tool and shout out to  VimislikArt for showing me this.

Would it be possible to export a character with different modules?

For example, if I picked a hat for my character to wear, could I have the exported sprite sheet be something like:

Row 1: Character's walk cycle
Row 2: Character hat's walk cycle

That way I could allow my players to choose if they want to wear a hat or not.

If this is possible, it could be expanded with different faces, facial hair, hats, etc.

By the way, right now, in order to get the x86 version to run on x86_64 bit Linux systems, the user will need to install the following 32 bit multlibs:


lib32-libxcursor lib32-libxinerama lib32-libxrandr lib32-alsa-lib lib32-libpulse


At least on Arch linux.

(1 edit)

When downloading the Linux demo, there is only an x86 executable available. If you look on Steam's hardware survey you'll see that almost every Linux gamer is using 64 bit already.

However, you could always just include an x86_64 and a x86 build if you wanted too.

Personally I would do the following:

* Include both an x86 and x86_64 binary.
* Include a shell script (called something like "play-watch1.sh" that does the following:


#!/bin/bash

ARCH=$(uname -m)

case $ARCH in

    x86_64)

        chmod +x ./WATCH1.x86_64

        ./WATCH1.x86_64

        ;;

    

    i386 | i686)

        chmod +x ./WATCH1.x86

        ./WATCH1.x86

        ;;

    *)

        echo "This game is not able to run on your platform."

        ;;

esac

It seems you guys don't have any Linux testers, so if you need any other help hit me up.