@
aldostools
:GAMEDATA
[TEST1]
search "difficulty"
<- So it will searches for the word "difficulty" as text-string?
write next 0: "Difficulty"
<- What is "write next 0". It means simply overwrite?
[TEST2]
; (67) = 0x43
<- So in Decimal 43 is 67.
write at (67): 446966666963756C7479
<- So it writes at "0x43"?
[TEST3]
search 646966666963756C7479:1
<- what does ":1" means?
write next 0: 446966666963756C7479
[TEST4]
set pointer: 43
<- What does set pointer means?
write next 0: 446966666963756C7479
[TEST5]
write at 43: "Difficulty"
<- So it writes at "0x43"?
[TEST6]
write at 0x43: 446966666963756C7479
Thanks Aldo!!