|
|
@ -19,8 +19,6 @@
|
|
|
|
{"GetHair", StatsFunctions::GetHairstyle},\
|
|
|
|
{"GetHair", StatsFunctions::GetHairstyle},\
|
|
|
|
{"GetIsMale", StatsFunctions::GetIsMale},\
|
|
|
|
{"GetIsMale", StatsFunctions::GetIsMale},\
|
|
|
|
{"GetBirthsign", StatsFunctions::GetBirthsign},\
|
|
|
|
{"GetBirthsign", StatsFunctions::GetBirthsign},\
|
|
|
|
{"GetCreatureModel", StatsFunctions::GetCreatureModel},\
|
|
|
|
|
|
|
|
{"IsCreatureName", StatsFunctions::IsCreatureName},\
|
|
|
|
|
|
|
|
{"GetDeathReason", StatsFunctions::GetDeathReason},\
|
|
|
|
{"GetDeathReason", StatsFunctions::GetDeathReason},\
|
|
|
|
\
|
|
|
|
\
|
|
|
|
{"GetLevel", StatsFunctions::GetLevel},\
|
|
|
|
{"GetLevel", StatsFunctions::GetLevel},\
|
|
|
@ -51,7 +49,6 @@
|
|
|
|
{"SetHair", StatsFunctions::SetHairstyle},\
|
|
|
|
{"SetHair", StatsFunctions::SetHairstyle},\
|
|
|
|
{"SetIsMale", StatsFunctions::SetIsMale},\
|
|
|
|
{"SetIsMale", StatsFunctions::SetIsMale},\
|
|
|
|
{"SetBirthsign", StatsFunctions::SetBirthsign},\
|
|
|
|
{"SetBirthsign", StatsFunctions::SetBirthsign},\
|
|
|
|
{"SetCreatureModel", StatsFunctions::SetCreatureModel},\
|
|
|
|
|
|
|
|
\
|
|
|
|
\
|
|
|
|
{"SetLevel", StatsFunctions::SetLevel},\
|
|
|
|
{"SetLevel", StatsFunctions::SetLevel},\
|
|
|
|
{"SetLevelProgress", StatsFunctions::SetLevelProgress},\
|
|
|
|
{"SetLevelProgress", StatsFunctions::SetLevelProgress},\
|
|
|
@ -98,8 +95,6 @@ public:
|
|
|
|
static const char *GetHairstyle(unsigned short pid) noexcept;
|
|
|
|
static const char *GetHairstyle(unsigned short pid) noexcept;
|
|
|
|
static int GetIsMale(unsigned short pid) noexcept;
|
|
|
|
static int GetIsMale(unsigned short pid) noexcept;
|
|
|
|
static const char *GetBirthsign(unsigned short pid) noexcept;
|
|
|
|
static const char *GetBirthsign(unsigned short pid) noexcept;
|
|
|
|
static const char *GetCreatureModel(unsigned short pid) noexcept;
|
|
|
|
|
|
|
|
static bool IsCreatureName(unsigned short pid) noexcept;
|
|
|
|
|
|
|
|
static const char *GetDeathReason(unsigned short pid) noexcept;
|
|
|
|
static const char *GetDeathReason(unsigned short pid) noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
static int GetLevel(unsigned short pid) noexcept;
|
|
|
|
static int GetLevel(unsigned short pid) noexcept;
|
|
|
@ -128,7 +123,6 @@ public:
|
|
|
|
static void SetHairstyle(unsigned short pid, const char *style) noexcept;
|
|
|
|
static void SetHairstyle(unsigned short pid, const char *style) noexcept;
|
|
|
|
static void SetIsMale(unsigned short pid, int male) noexcept;
|
|
|
|
static void SetIsMale(unsigned short pid, int male) noexcept;
|
|
|
|
static void SetBirthsign(unsigned short pid, const char *name) noexcept;
|
|
|
|
static void SetBirthsign(unsigned short pid, const char *name) noexcept;
|
|
|
|
static void SetCreatureModel(unsigned short pid, const char *name, bool useCreatureName) noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void SetLevel(unsigned short pid, int value) noexcept;
|
|
|
|
static void SetLevel(unsigned short pid, int value) noexcept;
|
|
|
|
static void SetLevelProgress(unsigned short pid, int value) noexcept;
|
|
|
|
static void SetLevelProgress(unsigned short pid, int value) noexcept;
|
|
|
|