From 2713ccc45e36674db8d897acc084f3c7961e99f2 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 7 Mar 2015 07:38:16 -0800 Subject: [PATCH] a couple more addresses --- Lua/A common.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Lua/A common.lua b/Lua/A common.lua index 8ca9274..1a5d5ca 100755 --- a/Lua/A common.lua +++ b/Lua/A common.lua @@ -9,12 +9,13 @@ end function Actor(addr) local function AA(a, s) return A(addr+a, s) end return { - number = AA(0x0, 2), + num = AA(0x0, 2), type = AA(0x2, 1), flags = AA(0x4, 4), x_copy = AA(0x8, 'f'), y_copy = AA(0xC, 'f'), z_copy = AA(0x10, 'f'), + var = AA(0x1C, 2), x = AA(0x24, 'f'), y = AA(0x28, 'f'), z = AA(0x2C, 'f'), @@ -27,6 +28,8 @@ function Actor(addr) z_vel = AA(0x6C, 'f'), lin_vel_old = AA(0x70, 'f'), ground_y = AA(0x88, 'f'), + damage_table = AA(0xA0, 4), + hp = AA(0xB7, 1), angle = AA(0xBA, 2), foot_left_x = AA(0xD4, 'f'), foot_left_y = AA(0xD8, 'f'),