Add a #push command, only works on NPCs for now

This commit is contained in:
Michael Cook (mackal)
2018-03-14 16:09:43 -04:00
parent 5e963c05af
commit 339e921f17
3 changed files with 35 additions and 0 deletions
+4
View File
@@ -582,6 +582,10 @@ public:
m_Position.z = NewPosition.z; };
void TryMoveAlong(float distance, float angle, bool send = true);
void ProcessForcedMovement();
inline void IncDeltaX(float in) { m_Delta.x += in; }
inline void IncDeltaY(float in) { m_Delta.y += in; }
inline void IncDeltaZ(float in) { m_Delta.z += in; }
inline void SetForcedMovement(int in) { ForcedMovement = in; }
//AI
static uint32 GetLevelCon(uint8 mylevel, uint8 iOtherLevel);