Originally Posted By: paracharlie
After doing these add_structs I still have a showdescription error in inventory and equipment. Not sure where to place those or what to use as the void* data that the add_struct calls for. Here is what I have done so far and not sure if these are even correct.

add_struct(NHAC_CINVENT_CELLS[NHAC_CINVCELLS], sizeof(RPGItem));
add_struct(NHAC_CINVENT_EQUIP[NHAC_CINVCELLS], sizeof(RPGItem));
add_struct(NHAC_MOUSEITEM, sizeof(RPGItem));


Try this instead to get the correct memory areas smile

Code:
add_struct(NHAC_CINVENT_CELLS, sizeof(RPGItem)*NHAC_CINVCELLS);
add_struct(NHAC_CINVENT_EQUIP, sizeof(RPGItem)*3);
add_struct(NHAC_MOUSEITEM, sizeof(RPGItem));



However this won't do, as it will not save items dropped on the ground frown