Page 1 of 1

Some more plguin value help (easy)

Posted: Sat Apr 21, 2007 3:38 am
by plushiefire
What are these,
Int16
Float
Undifiend

can somebody tell me what they are, there properties and what kind of changes they are usually used for? thanks

Posted: Sat Apr 21, 2007 6:08 am
by xzodia
Int16/short = 2bit number often used for chunk references but not always
float = 4bit number used for most numerical values
undefined = 4bits, has not been identifed yet eg it could be 2 shorts, a bitmask, an enum or any mixture of things

Posted: Sun Apr 22, 2007 1:05 am
by plushiefire
xzodia wrote:Int16/short = 2bit number often used for chunk references but not always
float = 4bit number used for most numerical values
undefined = 4bits, has not been identifed yet eg it could be 2 shorts, a bitmask, an enum or any mixture of things
thanks xodia :D