[Information] Guild ques, Helping with some values
Help With Values
Guild ques, Helping with some values Posted on: 06/13/2017 11:54am
Quote Post

Hello everyone, Im in doubt with some values of CE, it may sound a retarded question but, what are 4b*1 and 4b-1 values?ik 4b is 4 bytes but idk the mean of *1 and -1 on these values.Apreciate any help

RE: Guild ques, Helping with some values Posted on: 06/13/2017 12:49pm
Quote Post
Ubi Maior Minor Cessat

4b*1 is redundant way to say plain 4b values. It got popular during the years of flash numbers. To find a value that was shown as 10 in game you would need to scan for the value times eight and it was referred as 4b*8. In short it's a way to both say the data type and if there are numeric modifications to do to the value to scan for. 

Ie in a 4b*8 settings if your money was 10 you would scan for 80

4b means 4 bytes or 32bits (it's the data type of the value you scan for)

RE: Guild ques, Helping with some values Posted on: 06/18/2017 2:54am
Quote Post

to put it simply:

4b*1 = (4 bytes value) x 1
4b-1 = (4 bytes value) - 1

as Zenwaichi said, it's redundant..

RE: Guild ques, Helping with some values Posted on: 06/19/2017 12:05pm
Quote Post

Thanks for the fast response guys