PrinceOfHeaven
@PrinceOfHeaven
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
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
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
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
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?
Python
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
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 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
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 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