Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

paucc

14
Posts
72
Following
A member registered Jun 06, 2016 · View creator page →

Recent community posts

Hey! I hope the feedback was read as "ways to improve an already good game". 

I'm not close to my windows computer, so I can't test the LMB, but I'm probably wrong and with a big mouth. It's what happen when you give feedback days after playing.  😅

(1 edit)

Hi! I see you have the DM closed, so I'll post it here:

SPOILER: 

I found out (as I see others did, so probably you are already aware) that when holding the first body part (arm), you can just continue walking the train and end up with everything dark. When I saw the torso, I did try to add the arm to it, but there was no indication that I was able to do so, and after not working for a couple of minutes, I continued walking.

I think that it's kind of confusing that sometimes the interaction is with the LMB and sometimes with the "e". 

The load and save wasn't working for me, so I had to start again to test more about the arm, but didn't have the patience to get to that part again.

I don't know if the jump on the train image after the last wagon is intentional or not, but as you go on, it's more and more evident.

Oh, and the textures on the blue walls have some kind of glitch to me, any settings used didn't change. I have AMD 7900XT GPU

In any case, good work, nice ambient.

Yep, I found the same problem. After seeing some gameplay on YT, I found out that the problem was because I had the arm still on me.

I got some feedback for the game, is there some place to submit it without spoiling the gameplay to others?

I did as stubum said, and it worked, I'm in.   :D

Yay! It worked, thanks.

I also got the no stars bug except on one level where I only got one, so maybe it's related to the three stars result. Good work.

Unable to accept Discord invite, I don't know why. By the way, nice game, I love it.

I love the style!     

The UI doesn't change, the only thing changing is the css. Is the script not working?

It's slow but steady. 👍

Did you modify the script or the window.history.back(); worked for you?

In the line 7 of the original script, you can see that the script tells the browser to go back to the list page after adding a game:

    window.history.back(); 

This made my browser go back to the start page, so I modified it to click the button to go to the list page:

    $('.nav_btn')[1].click(); 

I hope this helps.

I had to modify the script, but it finally worked. 


This is the script that worked for me:

// is there a game to claim ? if yes, claim it

 if ($('[value="claim"]') && $('[value="claim"]')[0]) {

    $('[value="claim"]')[0].click();

// have I claimed a game ? If yes, go back

} else if (!window.location.toString().includes("/bundle/download")) { 

    $('.nav_btn')[1].click(); 

// no game to claim, no game claimed, change page

} else {

    $('.next_page')[0].click()

}