编辑偏移量

时间:2014-11-28 19:32:34

标签: python python-3.x hex byte

我有一个保存游戏。进入偏移1FCC0字节C-D-E存储游戏币。所以我制作了一个打开文件的脚本,将C-D-E设置为FF(最大值)并保存文件(或复制并修改副本)。

这是我的代码,但我不知道如何继续:

#import os when its finished to make it beautiful
#import time when its finished to make it beautiful (with sleeps times :D)
import tkinter
import binascii

#Preguntamos al usuario por el archivo a abrir y lo guardamos en la variable filename
filename = tkinter.filedialog.askopenfilename()

#Abrimos el archivo de origen (filename)
lector = open(filename, 'rb')

#Almacenamos el contenido (lo leemos) en una variable
contenido = lector.read()

#Cerramos el archivo porque ya lo tenemos en una variable
lector.close()

offsetdec = ("1FCC0H")

input()
PS:有些TAB空间或其他东西不能正常工作我对我来说是空闲的 我的版本是3.4.2

任何人都可以帮我完成它吗?

0 个答案:

没有答案