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
corroded_handcuffs
Creator of
Recent community posts
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
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
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
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