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. 😅
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.
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()
}