forked from mirror/openmw-tes3mp
finished loadnpc.hpp, fixed npdt 52byte structure
This commit is contained in:
parent
bc7e154643
commit
2e47290ed0
1 changed files with 4 additions and 4 deletions
|
@ -80,14 +80,14 @@ struct NPC
|
||||||
mPersonality,
|
mPersonality,
|
||||||
mLuck;
|
mLuck;
|
||||||
|
|
||||||
// mSkill vals are used only in MWMechanics::AttributeValue.setBase(), if less than 0 they are not considered
|
// mSkill cang grow up to 200, it must be unsigned
|
||||||
unsigned char mSkills[Skill::Length];
|
unsigned char mSkills[Skill::Length];
|
||||||
|
|
||||||
// at opencs/model/tools/referenceablecheck.cpp:679 is assumed that negative reputation values are invalid, can we assume we won't find any negative value?
|
// at opencs/model/tools/referenceablecheck.cpp:679 is assumed that negative reputation values are invalid, can we assume we won't find any negative value?
|
||||||
unsigned char mReputation;
|
char mUnknown1;
|
||||||
unsigned short mHealth, mMana, mFatigue;
|
unsigned short mHealth, mMana, mFatigue;
|
||||||
signed char mDisposition, mFactionID, mRank;
|
signed char mDisposition, mReputation, mRank;
|
||||||
char mUnknown;
|
char mUnknown2;
|
||||||
int mGold;
|
int mGold;
|
||||||
}; // 52 bytes
|
}; // 52 bytes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue