Skip to content
Open navbar menu
Sign UpLog In
Profile icon

PrinceOfHeaven

@PrinceOfHeaven
Repls
Community
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
Importing a map from Tiled into Pygame.
HI everybody! I just wanted to ask a question that I have been researching on for sometime. I have been learning Pygame and trying to make a real game
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
Is anyone willing to help me in Pygame and understand it's concept? I understand more if I am able to talk to a person instead of watching a video and
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
Hi everybody! I need help on making a visual based RPG. There are many videos on the internet that cam help me make one. But only some of them actuall
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
Like in my 2nd to last post (https://repl.it/talk/ask/I-just-need-help-on-key-binding-How-do-you-exactly-achieve-this/120776) I asked help on how to k
Bookie0
Bookie0
I think you meant Coder100 lol2 years ago
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
Is there anything I can do to make the password be astrixed when the player types it in the terminal? And if there is can you show me in the comments?
Password needs astrix
Python
19ecal
19ecal
Try this: from stdiomask import getpass password=getpass(mask="*", prompt="Password:") If you don't specify mask or prompt, they default to "*" and "Password:"2 years ago
Coder100
Coder100
Remember to call the function lol from account import account account() `2 years ago
Coder100
Coder100
https://gist.github.com/jjlumagbas/40ac3e6cd568d81ebb83e9d5575004bc2 years ago
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
I am making a game, like I said in my last post (https://repl.it/talk/ask/I-just-need-help-on-key-binding-How-do-you-exactly-achieve-this/120776, stil
Coder100
Coder100
Make ur database look like this: from replit import db db[username] = { password: ... stats: ... whatever ... } and that is all. The stuff automatically saves, and if you want to update it, try this: temp = db[username] do something with temp db[username] = temp due to a dumb bug2 years ago
PrinceOfHeaven
PrinceOfHeaven
shared a Post
2 years ago
As of right now I am creating a game that is word for now. I will soon make it into a pixilated game. Anyway what I want to is that, how do you make a
Coder100
Coder100
You could use getch: https://pypi.org/project/getch/ works just like input but without the need to press enter from getch import getch print(getch()) `2 years ago