-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
50 lines (39 loc) · 1.49 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import getpass
import json
from authorize import authorize
from save import check_save
from account import account
def settings(p):
print("PROFILE SETTINGS [ps]")
print("QUIT SETTINGS [qs]")
print("QUIT GAME [qg]")
print("ACCOUNT SETTINGS [as]")
while True:
settings_action = input("# ")
if settings_action == "qs":
break
elif settings_action == "ps":
print("CHANGE USERNAME [cu]")
ps_input = input("## ")
if ps_input == 'cu':
new_name = input("Enter new username: ")
authorize()
p.PLAYERNAME = new_name
elif settings_action == "qg":
check_save(p)
exit()
elif settings_action == 'as':
print("CHANGE ACCOUNT INFO [cai]")
as_input = input("## ")
if as_input == "cai":
new_account_name = input("Enter new account name: ")
new_account_password = getpass.getpass("Enter new account password: ")
account = {
'username' : new_account_name,
'userpassword' : new_account_password
}
with open("RPG-DATA/account.rpgdt", 'w') as file:
json.dump(account, file)
print("Successfully changed account info.")
else:
print("Unkown settings.")