Skip to content

Basics of Search

tomvita edited this page Feb 28, 2023 · 17 revisions

If you see a number on game screen and want to change it

Data types

Data types is how the bits in memory are representing numbers

u8, u16, u32

Unsigned integer of 8, 16 and 32 bit respectively. u32 is the most common, u16 is used by 16 bit games, u8 is sometimes used by game that combine two attribute into one variable.