Thread: Structs
View Single Post
  #1  
Old 01-25-2016, 10:39 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default Structs

So as I dig deeper into the code, I have started to try to figure out the structs system. Take for instance the LoginInfo struct.

Code:
struct LoginInfo_Struct {
/*000*/	char	login_info[64];
/*064*/	uint8	unknown064[124];
/*188*/	uint8	zoning;			// 01 if zoning, 00 if not
/*189*/	uint8	unknown189[275];
/*488*/
};
How was this originally found? If we have some that we do not know, that have yet to be implememented, how would I go about finding the data to make the struct. The actual structure completely makes sense to me but the method of determining it does not.
Reply With Quote