Quote:
Originally Posted by Kiyono
So you got the packet from Korvac's wiki which said "ushort" but how did you know that you had to use "uint16" cause I looked at that wiki before but I had no clue on how to figure out what you needed and I still don't know why you used "uint16" is there a chart for stuff like that or did you just learn it somewhere?
|
uint = unsigned 32-bit integer
uint16 = unsigned 16-bit integer = ushort
uint64 = unsigned 64-bit integer = ulong
unsigned means it is a non-negative number.
if you take out the "u" in those type words, you basically get the same set of integers plus all the negatives that are included in the set.