Proper magictype.dat structure 06/10/2012 - CO2 Private Server - 8 Replies Does anyone have the most up-to-date magictype structure?
SQL-DB structure 05/29/2010 - Silkroad Online - 0 Replies Hey folks,
does anyone happen to have the structure of the official SRO SQL-DB? I need no more than the column names and their associated table names (usually located in the DB "INFORMATION_SCHEMA").
[C] Player Structure [PW-MS] 03/16/2010 - PW Hacks, Bots, Cheats, Exploits - 5 Replies Hi everyone. Just wanna share the stuff i found out when reversing the game.
Assuming you are using dll injectiong and you have the base pointer to all player stats, you can simply access all the data from a nice and userfriendly structure.
Here how to read from memory:
VARBASE *Stats = 0xBASEPOINTER;
printf("Player HP: %d/%d", Stats->p_Player->Current_HP, Stats->p_Player->Maximum_HP);
And here the structure you need to make this available:
typedef unsinged char BYTE;