Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
swrlly committed Jul 11, 2021
1 parent a605a3c commit e3e9aa2
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Plugins/AutoNexus.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ def predictAOE(self, client: Client, enemy: int, timeOfEffect: int, packet: Show
self.bulletsInTick += 1
# do damage calculation
defense = client.defense
print("enemy is", enemy, "damage is", client.aoeDictionary[enemy][packet.color]['damage'])
damage = client.aoeDictionary[enemy][packet.color]['damage']

# check if we are armored
Expand Down Expand Up @@ -239,7 +238,6 @@ def onShowEffect(self, client: Client, packet: ShowEffect, send: bool) -> (ShowE
timeOfEffect = time.time()
predictFutureThread = threading.Thread(target = self.predictAOE, args = (client, enemy, timeOfEffect, packet), daemon = True)
predictFutureThread.start()
print('thread started')

return packet, send

Expand Down
Binary file modified bin/BulletDictionary.pkl
Binary file not shown.
Binary file modified bin/NameDictionary.pkl
Binary file not shown.
Binary file modified bin/TileDictionary.pkl
Binary file not shown.
4 changes: 2 additions & 2 deletions client.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,8 @@ def Listen(self):
return

except OSError as e:
print(e, "(probably due to attempting to read from a socket that has been closed)")
#traceback.print_exc()
# print(e, "(probably due to attempting to read from a socket that has been closed)")
traceback.print_exc()
print("Restarting proxy...")

# unused exception rn
Expand Down
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(self, pm: PluginManager, client: Client, proxy):
self.challengebtn.place(x = x, y = y)

x, y = 134, 32
self.version = Label(bd = 0, text = 'v3.2.4', bg = 'black', fg = self.TEXTCOL)
self.version = Label(bd = 0, text = 'v3.2.5', bg = 'black', fg = self.TEXTCOL)
self.version['font'] = self.keyFont
self.subimage(self.version, self.bg, x - 2, y - 2, x + self.version.winfo_reqwidth(), y + self.version.winfo_reqheight())
self.version.place(x = x, y = y)
Expand Down
Binary file modified normal/Valor.swf
Binary file not shown.
4 changes: 2 additions & 2 deletions proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def main():
gui = GUI(plugins, client, proxy)
print("[Initializer]: GUI started!")

#logger = Logger()
#logFile = logger.openLogFile()
logger = Logger()
logFile = logger.openLogFile()

gui.start()

Expand Down

0 comments on commit e3e9aa2

Please sign in to comment.