diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-11-25 19:45:23 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-11-25 19:45:23 +0100 |
commit | 9f1f1029c323647c60ae2749a68773437e9f40d7 (patch) | |
tree | f97431cfa7f9e057eab4318883ebb134d07fb459 /TestDLL | |
parent | 0625c5c5a8a8aca6a5122244fce2751e2a29b890 (diff) |
finalize Hunted
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/HuntClasses.h | 6 | ||||
-rw-r--r-- | TestDLL/dllmain.cpp | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/TestDLL/HuntClasses.h b/TestDLL/HuntClasses.h index d5fc90e..e394cf8 100644 --- a/TestDLL/HuntClasses.h +++ b/TestDLL/HuntClasses.h @@ -10,10 +10,6 @@ struct ISystem; #define ENTITY_FLAG_LOCAL_PLAYER 0x8000000 -#define ENTITY_FLAG_TRIGGER_AREAS 0x2000 -#define ENTITY_FLAG_SEND_RENDER_EVENT 0x20000 -#define ENTITY_FLAG_CASTSHADOW 0x1 -#define ENTITY_ENEMY_CHECK (ENTITY_FLAG_SEND_RENDER_EVENT | ENTITY_FLAG_CASTSHADOW) #define PENTITYSYSTEM_ISYSTEM_OFFSET 104 @@ -280,6 +276,8 @@ public: virtual Ang3 GetWorldAngles() const = 0; virtual Quat GetWorldRotation() const = 0; virtual Vec3 GetWorldScale() const = 0; + //virtual IScriptTable* GetScriptTable() const final; + //GetScriptTable -> VirtualFuncIndex 64 }; struct IEntityIt diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index a627e39..bae1edd 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -195,8 +195,8 @@ void APIENTRY LibEntry(struct HuntCtx * HuntCtx) } Vec3 entPos = pEnt->GetPos(); - entPos.x -= 500.0f; - entPos.y -= 500.0f; + entPos.x -= 520.0f; + entPos.y -= 520.0f; entPos.y = 1020.0f - entPos.y; float entAngle = pEnt->GetWorldAngles().z; entAngle *= -1.0f; |