初级玩家

- 贡献度
- 0
- 金元
- 844
- 积分
- 84
- 精华
- 0
- 注册时间
- 2018-12-17
|
for i=0,AddressList.Count-1 do
if AddressList[i].Description:lower()=='float' then
print("Changing "..i..":"..AddressList[i].Description)
AddressList[i].Description='_float_'
end
if AddressList[i].Description:lower()=='double' then
print("Changing "..i..":"..AddressList[i].Description)
AddressList[i].Description='_double_'
end
--next ones are not necessary, just checking to be sure
if AddressList[i].Description:lower()=='byte' then
print("Changing "..i..":"..AddressList[i].Description)
AddressList[i].Description='_byte_'
end
if AddressList[i].Description:lower()=='dword' then
print("Changing "..i..":"..AddressList[i].Description)
AddressList[i].Description='_byte_'
end
end |
|