Delete get_netvars.py
This commit is contained in:
@@ -1,19 +0,0 @@
|
|||||||
from netvar_manager import NetvarsManager
|
|
||||||
import pymem
|
|
||||||
import pymem.process
|
|
||||||
|
|
||||||
class get_netvars() :
|
|
||||||
def __init__(self) :
|
|
||||||
pm = pymem.Pymem("csgo.exe")
|
|
||||||
netvars_manager = NetvarsManager(pm)
|
|
||||||
out_file = "classes/netvars.json"
|
|
||||||
if out_file:
|
|
||||||
with open(out_file, 'w+') as fp:
|
|
||||||
netvars_manager.dump_netvars(
|
|
||||||
fp,
|
|
||||||
json_format=out_file.endswith('.json')
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
netvars_manager.dump_netvars()
|
|
||||||
|
|
||||||
pm.close_process()
|
|
||||||
Reference in New Issue
Block a user