Skip to main content

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

corroded_handcuffs

26
Posts
2
Topics
2
Followers
15
Following
A member registered Sep 14, 2021 · View creator page →

Creator of

Recent community posts

wow it get REAL hard at the end lol, but m glad i tried again until i got it to see that ending XD, im also glad there was something at the end lol, only on like my 3rd run did i notice that the distance was decreasing instead of increasing lol, that gave me hope

i... i really wished it MUCH MUCH LONGER 

and an update: i went abit more through the game files and found that those are the only 2 endings there is, it looks like there were alot of unused images though, maybe there were a possibility of another ending but it just didnt make the final cut, so yeah those are the only 2 possible endings, and as far as i know the "game over" screen wasnt used neither so it gives you an idea of what the other ending could've been

idk what matters and what not so ill tell you all i did, i picked up every item i saw on the way, was as nice as i could to the little girl cuz i liked her, gave her chocolate on the elevator and everything, said yes when she proposed to help me out when i got lost, and then at the very end when she tells you to go down that hole i said i was afraid of death and then i tried both possibilities, accepting and going down (i think was the happy ending) and telling her i would rather die trying to get out instead of going down and she opened the way back for me (i think this one was the true ending), but i think there is still a bad ending missing because there is a "game over" image in the game files which i never got to see, hope this helps

continuation? hmm? maybe? when? lol i cant wait

i got 2 endings, the happy ending (imo not so happy) and the true ending, how many endings are there? especially because i had collected alot of items and didnt get to use any of them.

it is a way of setting up a generator class, but for your case we dont need the generator class really we just need to get a list out of it, so to set a generator we say (x for x in [*some list or any iterable object*]) and it would return a generator class but we need the list from it so we put it inside list() function, but i generally use the generator to shorten code as ill give u an example, we can write this bit of code as this:

names_list = [*some names*] 
result_list = []
for name in names_list:
        if name.startswith("t"): #to check if  a name starts with the letter t
                result_list.append(name)
print(result_list)

we can instead write all of this code as one line of code:

print( list( (name for name in [*some names*] if name.startswith("t") ) ) )

which may look abit complicated but again u would wrap ur head better around it if you look into how generators in python work, and from this i see you need to look into a lot of basic concepts in python as they really make coding in python much faster and easier (even if a bit harder to read) plus dont forget to also look into pyinstaller to transform ur code from a .py to an .exe that can run on any machine even those which dont have python like all of the projects on my profile, all of then are .exe that can run on all machines even tho every project i made is made on python.

here's an explanation for that code, int() is used to turn the string that you get from the input into string, len() is a function o get the length of an iterable object in this case a list, [] brackets to make a list but in this case its a list made from a generator (the text inside the brackets "x for x in" is to make the generator, generators are somewhat advanced but u need to look into them cuz they are helpful) list() to turn the get a list from the range() function which takes numbers from 0 to the number you specified which in our case is the variable "number" inputed, then an if statement for the generator which add numbers to this list if number%x==0 meaning if dividing the number variable by x for every x smaller than the number, if dividing that number by x has to left over we add it to that list, and in the end the len() function to see if that list is empty meaning no number smaller than "number" can divide it with no left over meaning its a prime number, i know u still dont understand it but if u look into the keywords i mentioned here u may start to understand some of it and gain more experience on python cuz the tools i used here are very useful to python

(1 edit)

cool, can be written simpler in 2 lines as:
number = int(input("enter number here: ")
print(len([x for x in list(range(1, number)) if number%x==0]) == 0)
and you can look into making it an exexutable using pyinstaller so it can run on any machine even those which dont have python

(1 edit)

I GOT THE SECRET BOSSFIGHT BUT IT I LOST CUZ IT TOOL ME TOO LONG TO UNDERSTAND HOW TO FIGHT HIM BACK T~T

Does It Support Language Switching To English?

so what am i doing wrong, how to get the ending 1?

yes in fact i am using windows 7, i will try to look into the page you provided see if i can find a temporary solution because i do want to try out this game as i told you once when you were just starting to devlop it

i got an error trying to launch the demo, missing api-ms-win-core-path-|1-1-0.dll, its telling me to reinstall the program yet i only unzipped the .zip so im pretty sure there wasnt anything lost

idk and idk how to look for it tbh sorry

i cant run it, i got an unhandled exception, "cannot create the shader object ", "Failed to obtain/convert traceback!"

hi

i joined this game jam and this is my first jam. to join ever, so i wanted to work on it with someone else so i can get better, im a python programer, an amateur but i think i can get the job done, i can make pixel art and im... lets say mid at it, and i totally cant make music, so im looking for a team member, which can handle some of these, either art or composing music or maybe programing (preferred with python so we can work together), i want to make a team but not a very big one, 2 or 3 members at max, because i dont think working with a big team on a 12 days jam would be a great idea, so please if you think u can fulfill any of those requirements message me back and we'll try to work things out and figure each ones role

(4 edits)

hi
im new to the game dev things, but im learning, i usually make some prototypes on my own, i use raw python programming with no engines, and i think im pretty good at it but still an amateur, and also i make pixel art which is 2d, i usually work on my own but i never participated in a game jam before so i dont really know, im planning to work on this one on my own but since im new and all i thought i would maybe reply to you and tell you that if the jam is abt to start and u r running out on members and  u need a program or an 2d artist just message me and ill tell u if i can help, here's my discord in any case deleted_account#6322

becuase custom fonts r way cooler

i keep on actually breaking the game and going off screen

is defeating the dark souls boss pissible, if yes someone tell me cuz i want to beat him if possible

(1 edit)

how did u even manage to make a pygame game just for 64bits, how is that even possible, cant u make it into both 64 and 32bits

does it run on 32bit

why not just make a 32bit version, its not that much work even

yeah,  ill try to make something, dont know if i can cuz of school and life and all but ill try

i joined cuz i was stressing looking at the timer with only 5 mins lefts, i dont even have any idea of anthing abt that year, was scared gonna regret joining XD, ig ill have to at least try to come up with smthng