smemhack 5.7.2__tar.gz → 5.7.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {smemhack-5.7.2/smemhack.egg-info → smemhack-5.7.3}/PKG-INFO +1 -1
- {smemhack-5.7.2 → smemhack-5.7.3}/setup.py +1 -1
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack/__init__.py +1 -1
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack/main.py +9 -6
- {smemhack-5.7.2 → smemhack-5.7.3/smemhack.egg-info}/PKG-INFO +1 -1
- {smemhack-5.7.2 → smemhack-5.7.3}/LICENSE.txt +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/README.md +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/setup.cfg +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack.egg-info/SOURCES.txt +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack.egg-info/dependency_links.txt +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack.egg-info/requires.txt +0 -0
- {smemhack-5.7.2 → smemhack-5.7.3}/smemhack.egg-info/top_level.txt +0 -0
@@ -1,2 +1,2 @@
|
|
1
1
|
from .main import *
|
2
|
-
__version__="5.7.
|
2
|
+
__version__="5.7.3"
|
@@ -148,10 +148,13 @@ def hack(number):
|
|
148
148
|
py.click(1053*nx,317*ny)
|
149
149
|
time.sleep(1)
|
150
150
|
lw=""
|
151
|
-
def normal_w(
|
152
|
-
|
153
|
-
|
154
|
-
|
151
|
+
def normal_w(ggget,data):
|
152
|
+
xget=[]
|
153
|
+
for gget in ggget:
|
154
|
+
gget=gget.split("\n")
|
155
|
+
gget=gget[2:]
|
156
|
+
gget="\n".join(gget)
|
157
|
+
xget.append(gget)
|
155
158
|
for _ in range(0,len(data)+number):
|
156
159
|
py.click(115*nx,604*ny)
|
157
160
|
py.keyDown("ctrl")
|
@@ -164,11 +167,11 @@ def hack(number):
|
|
164
167
|
w=w.split("\n")
|
165
168
|
w=w[2:]
|
166
169
|
w="\n".join(w)
|
167
|
-
for x in
|
170
|
+
for x in xget:
|
168
171
|
if w==x:
|
169
172
|
py.click(971*nx,106*ny)
|
170
173
|
time.sleep(0.5)
|
171
|
-
py.typewrite(data[
|
174
|
+
py.typewrite(data[xget.index(x)])
|
172
175
|
py.press("enter")
|
173
176
|
time.sleep(1)
|
174
177
|
for _ in range(0,len(data)+number):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|