From 60f11ac1710f2d7eb97dd194060c87943ead8ecd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B8=9F=E9=9B=B2?= Date: Wed, 28 Aug 2024 02:51:29 +0800 Subject: [PATCH] EMoveType patch --- cstrike/sdk/const.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cstrike/sdk/const.h b/cstrike/sdk/const.h index 95f1d79..19bc28a 100644 --- a/cstrike/sdk/const.h +++ b/cstrike/sdk/const.h @@ -134,15 +134,15 @@ enum EMoveType : int { MOVETYPE_NONE = 0, MOVETYPE_ISOMETRIC, - MOVETYPE_WALK, + MOVETYPE_WALK = 514, MOVETYPE_STEP, MOVETYPE_FLY, // no gravity, but still collides with stuff MOVETYPE_FLYGRAVITY, // flies through the air and is affected by gravity MOVETYPE_VPHYSICS, MOVETYPE_PUSH, // no clip to world, push and crush - MOVETYPE_NOCLIP, // no gravity, no collisions, still do velocity/absvelocity - MOVETYPE_LADDER, - MOVETYPE_OBSERVER, // observer movement, depends on player's observer mode + MOVETYPE_NOCLIP = 1794, // no gravity, no collisions, still do velocity/absvelocity + MOVETYPE_LADDER = 2313, + MOVETYPE_OBSERVER = 2056, // observer movement, depends on player's observer mode MOVETYPE_CUSTOM, MOVETYPE_LAST = MOVETYPE_CUSTOM, MOVETYPE_MAX_BITS = 4