Skip to content

Commit 50aa2df

Browse files
committed
commited
1 parent 34d3eb9 commit 50aa2df

20 files changed

+30403
-2
lines changed

.idea/Python.iml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/Scripts/game_mode.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from os import path
2+
import subprocess
3+
4+
mode = input('Enter mode: ')
5+
6+
file = open('mode.txt', 'w+')
7+
file.write(mode)
8+
9+
content = file.read()
10+
11+
if content == 'pubg':
12+
print(content)
13+
subprocess.call([r'C:\Program Files\TxGameAssistant\ui\AndroidEmulator.exe'], shell=True)
14+
else:
15+
print('no')

Python/Scripts/mode.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gmode=amode=m

Python/pyvenv.cfg

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
home = c:\users\amanu\anaconda3
2+
implementation = CPython
3+
version_info = 3.8.3.final.0
4+
virtualenv = 20.1.0
5+
include-system-site-packages = false
6+
base-prefix = c:\users\amanu\anaconda3
7+
base-exec-prefix = c:\users\amanu\anaconda3
8+
base-executable = c:\users\amanu\anaconda3\python.exe

0 commit comments

Comments
 (0)