Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MiscellaneousStuff committed Jul 24, 2022
1 parent e6488f3 commit 3b5810b
Show file tree
Hide file tree
Showing 941 changed files with 109,307 additions and 11,122 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Rules in this file were initially inferred by Visual Studio IntelliCode from the C:\Users\win8t\OneDrive\Desktop\projects\tlol-replay-scraper codebase based on best match to current usage at 27/10/2021
# You can modify the rules from these initially generated values to suit your own policies
# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
[*.cs]

3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ Release/
LView/boost/
LView/Debug/
LView/Release/
LView/x64/
.vs/
LView/x64/
Binary file removed GameplayScripts/__pycache__/actor.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed GameplayScripts/__pycache__/base_script.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file removed GameplayScripts/__pycache__/drawings.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file removed GameplayScripts/__pycache__/extractor.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
113 changes: 0 additions & 113 deletions GameplayScripts/actor.py

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion GameplayScripts/commons/skills.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def __init__(self, name, missile_names, flags, delay = 0.0):
]
}

def draw_prediction_info(game, ui):
def draw_prediction_info(game):
global ChampionSpells, Version

ui.separator()
Expand Down
2 changes: 1 addition & 1 deletion GameplayScripts/commons/targeting.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class TargetingConfig:
target_minions = False
target_jungle = False

def draw(self, ui):
def draw(self):
ui.separator()
self.selected = ui.listbox("Target", [str(target)[7:] for target in self.targets], self.selected)
self.target_jungle = ui.checkbox("Allow targeting jungle monsters", self.target_jungle)
Expand Down
19 changes: 19 additions & 0 deletions GameplayScripts/replay_extractor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from lview import *

lview_script_info = {
"script": "TLoL - Replay Extractor",
"author": "MiscellaneousStuff",
"description": "Extracts information from replay files as they're running for deep learning"
}

def lview_load_cfg(cfg): pass
def lview_save_cfg(cfg): pass
def lview_draw_settings(game): pass

last_time = 0.0

def lview_update(game):
global last_time

if game.time != last_time:
pass
50 changes: 0 additions & 50 deletions GameplayScripts/spare/auto_smite.py

This file was deleted.

63 changes: 0 additions & 63 deletions GameplayScripts/spare/auto_spell.py

This file was deleted.

20 changes: 0 additions & 20 deletions GameplayScripts/spare/base_script.py

This file was deleted.

75 changes: 0 additions & 75 deletions GameplayScripts/spare/champ_tracker.py

This file was deleted.

Loading

0 comments on commit 3b5810b

Please sign in to comment.