Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] How to get socket info of spesific item client side?

Newbie Spellweaver
Joined
Jun 5, 2015
Messages
35
Reaction score
6
hi i triying to get the values of socket info in client side, here is the struct.

Code:
typedef struct    //-> Complete 
(size: 107)
{    
/*+0*/        short    ItemID;    
/*+2*/        int        Level;    
/*+6*/        char    Unknown6;    
/*+7*/        char    Unknown7;    
/*+8*/        char    Unknown8;    
/*+9*/        short    DamageMin;    
/*+11*/        short    DamageMax;    
/*+13*/        char    Unknown13;    
/*+14*/        short    Unknown14;    
/*+16*/        short    Unknown16;    
/*+18*/        char    Unknown18;    
/*+19*/        char    Unknown19;    
/*+20*/        short    Unknown20;    
/*+22*/        char    Durability;    
/*+23*/        char    ExcellentOption;    
/*+24*/        char    AncientOption;    
/*+25*/        short    ReqStrenght;    
/*+27*/        short    ReqDextirity;    
/*+29*/        short    ReqEnergy;   
/*+31*/        short    ReqVitality;    
/*+33*/        short    ReqCommand;    
/*+35*/        short    ReqLevel;    
/*+37*/        char       SpecialCount;    
/*+38*/        WORD    SpecialType[8];    
/*+54*/        BYTE      SpecialValue[8];    
/*+62*/        int           UniqueID;    
/*+66*/        char        Unknown66;    
/*+67*/        char        PosX;    
/*+68*/        char        PosY;    
/*+69*/        WORD     HarmonyType;    
/*+71*/        short       HarmonyValue;    
/*+73*/        char        Is380Item;

[COLOR=#ff0000]  
  
/*+74*/        char    SocketOption[5];    
/*+79*/        char    Unknown79;    
/*+80*/        char    SocketSeedIndex[5];    
/*+85*/        char    SocketSphereLevel[5];    
/*+90*/        char    SocketSet;
 
[/COLOR]    BYTE gap01[5];    

/*+96*/        char    DurabilityState;    
/*+97*/        char     PeriodItem;    
/*+98*/        char     ExpiredItem;    
/*+99*/        int        ExpireDateConvert;    
/*+103*/      int        Unknown103;
} 
ObjectItem, * lpItemObj;

#pragma pack(pop)


but cant gets how make the funcion to get it.
can anyone help me please?:laugh::laugh:
 
Last edited by a moderator:
Back
Top