Release 1.1

Auto notepad opened
This commit is contained in:
BarsTiger
2021-08-22 13:08:17 +03:00
parent 41b7fd1418
commit 389083ea72

View File

@@ -1,5 +1,6 @@
import json, os, shutil import json, os, shutil, subprocess
import curses import curses
import sys
os.system("title " + "GTA BuyBase") os.system("title " + "GTA BuyBase")
@@ -557,12 +558,18 @@ while True:
json.dump(owningtempbase, ownwrite, indent=3, ensure_ascii=False) json.dump(owningtempbase, ownwrite, indent=3, ensure_ascii=False)
print() print()
print("File is created. Open it with any text editor") print("File is created. Open it with any text editor (notepad will be opened automatically on Windows)")
print("If you own item, type true near its name. If not - false") print("If you own item, type true near its name. If not - false")
print("It shold be like this: ") print("It shold be like this: ")
print('"Avenger": true,') print('"Avenger": true,')
print("After each line shold be a ','") print("After each line shold be a ','")
print() print()
if sys.platform == "win32":
input("After you press Enter, notepad app will be opened")
command = 'cmd /c "notepad.exe {}"'.format(ownbasename)
os.system(command)
print()
input("When you are ready, press Enter") input("When you are ready, press Enter")
input("Press Enter to load data from ownbase file") input("Press Enter to load data from ownbase file")