Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

corroded_handcuffs

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

Creator of

Recent community posts

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