diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2021-11-20 03:10:50 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2021-11-20 03:18:08 +0000 |
commit | da6f343032cb01597dc7866e66f091adf3243a62 (patch) | |
tree | 870f8cb8e82bb42202ab92bea03fc6ab35ada7ca /gamedata |
Initial public snapshot
With code from Bill. Thanks Bill!
Diffstat (limited to 'gamedata')
-rw-r--r-- | gamedata/engine.kv | 11 | ||||
-rw-r--r-- | gamedata/gamelib.kv | 14 |
2 files changed, 25 insertions, 0 deletions
diff --git a/gamedata/engine.kv b/gamedata/engine.kv new file mode 100644 index 0000000..81a0545 --- /dev/null +++ b/gamedata/engine.kv @@ -0,0 +1,11 @@ +// = engine library = + +// CDemoRecorder +vtidx_SetSignonState 3 +vtidx_StopRecording 7 +vtidx_RecordPacket 11 + +// VEngineClient +vtidx_GetEngineBuildNumber { L4D2 99 } + +// vi: sw=4 ts=4 noet tw=80 cc=80 diff --git a/gamedata/gamelib.kv b/gamedata/gamelib.kv new file mode 100644 index 0000000..388abb9 --- /dev/null +++ b/gamedata/gamelib.kv @@ -0,0 +1,14 @@ +// = client and server libaries = + +// CGameMovement +vtidx_CheckJumpButton { + 2013 "28 + NVDTOR" + L4D "32 + NVDTOR" + Portal2 "35 + NVDTOR" +} +off_mv 8 + +// I(Server|Client)Unknown +vtidx_GetBaseEntity 4 + +// vi: sw=4 ts=4 noet tw=80 cc=80 |