|
|
|
@ -12,6 +12,8 @@
|
|
|
|
|
{"SetObjectCount", WorldFunctions::SetObjectCount},\
|
|
|
|
|
{"SetObjectGoldValue", WorldFunctions::SetObjectGoldValue},\
|
|
|
|
|
{"SetObjectScale", WorldFunctions::SetObjectScale},\
|
|
|
|
|
{"SetObjectState", WorldFunctions::SetObjectState},\
|
|
|
|
|
{"SetObjectLockLevel", WorldFunctions::SetObjectLockLevel},\
|
|
|
|
|
{"SetObjectPosition", WorldFunctions::SetObjectPosition},\
|
|
|
|
|
{"SetObjectRotation", WorldFunctions::SetObjectRotation},\
|
|
|
|
|
\
|
|
|
|
@ -22,6 +24,8 @@
|
|
|
|
|
{"GetObjectCount", WorldFunctions::GetObjectCount},\
|
|
|
|
|
{"GetObjectGoldValue", WorldFunctions::GetObjectGoldValue},\
|
|
|
|
|
{"GetObjectScale", WorldFunctions::GetObjectScale},\
|
|
|
|
|
{"GetObjectState", WorldFunctions::GetObjectState},\
|
|
|
|
|
{"GetObjectLockLevel", WorldFunctions::GetObjectLockLevel},\
|
|
|
|
|
{"GetObjectPosX", WorldFunctions::GetObjectPosX},\
|
|
|
|
|
{"GetObjectPosY", WorldFunctions::GetObjectPosY},\
|
|
|
|
|
{"GetObjectPosZ", WorldFunctions::GetObjectPosZ},\
|
|
|
|
@ -32,6 +36,9 @@
|
|
|
|
|
{"SendObjectDelete", WorldFunctions::SendObjectDelete},\
|
|
|
|
|
{"SendObjectPlace", WorldFunctions::SendObjectPlace},\
|
|
|
|
|
{"SendObjectScale", WorldFunctions::SendObjectScale},\
|
|
|
|
|
{"SendObjectLock", WorldFunctions::SendObjectLock},\
|
|
|
|
|
{"SendObjectUnlock", WorldFunctions::SendObjectUnlock},\
|
|
|
|
|
{"SendDoorState", WorldFunctions::SendDoorState},\
|
|
|
|
|
\
|
|
|
|
|
{"SetHour", WorldFunctions::SetHour},\
|
|
|
|
|
{"SetMonth", WorldFunctions::SetMonth},\
|
|
|
|
@ -51,6 +58,8 @@ public:
|
|
|
|
|
static void SetObjectCount(int count) noexcept;
|
|
|
|
|
static void SetObjectGoldValue(int goldValue) noexcept;
|
|
|
|
|
static void SetObjectScale(int scale) noexcept;
|
|
|
|
|
static void SetObjectState(int scale) noexcept;
|
|
|
|
|
static void SetObjectLockLevel(int lockLevel) noexcept;
|
|
|
|
|
static void SetObjectPosition(double x, double y, double z) noexcept;
|
|
|
|
|
static void SetObjectRotation(double x, double y, double z) noexcept;
|
|
|
|
|
|
|
|
|
@ -61,6 +70,8 @@ public:
|
|
|
|
|
static int GetObjectCount(unsigned int i) noexcept;
|
|
|
|
|
static int GetObjectGoldValue(unsigned int i) noexcept;
|
|
|
|
|
static int GetObjectScale(unsigned int i) noexcept;
|
|
|
|
|
static int GetObjectState(unsigned int i) noexcept;
|
|
|
|
|
static int GetObjectLockLevel(unsigned int i) noexcept;
|
|
|
|
|
static double GetObjectPosX(unsigned int i) noexcept;
|
|
|
|
|
static double GetObjectPosY(unsigned int i) noexcept;
|
|
|
|
|
static double GetObjectPosZ(unsigned int i) noexcept;
|
|
|
|
@ -71,6 +82,9 @@ public:
|
|
|
|
|
static void SendObjectDelete() noexcept;
|
|
|
|
|
static void SendObjectPlace() noexcept;
|
|
|
|
|
static void SendObjectScale() noexcept;
|
|
|
|
|
static void SendObjectLock() noexcept;
|
|
|
|
|
static void SendObjectUnlock() noexcept;
|
|
|
|
|
static void SendDoorState() noexcept;
|
|
|
|
|
|
|
|
|
|
static void SetHour(unsigned short pid, double hour) noexcept;
|
|
|
|
|
static void SetMonth(unsigned short pid, int month) noexcept;
|
|
|
|
|