ok, if your not really sure what an offset is:
kourath (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))):
really, an offset is just, well, an offset. it tells the distance between the base address and the address your trying to read. the beaty of offsets is that the address will always be in the same place relative to the base address (aka the offset value), as long as there isnt an update. in the event of an update, the address will relocate to another place relative to the base address, and you will need to find the new offset for the updated version.
(
http://www.taultunleashed.com/phpbb2/ab ... sets_.html ) (read all of my first post for more info)
now, once you read that, or if you already know what an offset is, theyre usually in an INI file, or theyre hardcoded into the actual program.