From d7dfb6a6ae8a7075c76d91ae11d48a0431b5680f Mon Sep 17 00:00:00 2001 From: RD42 <42702181+dashr9230@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:49:35 +0800 Subject: [PATCH] [server] Implement/match `n_GangZoneHideForAll(...)` --- server/scrcustom.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/server/scrcustom.cpp b/server/scrcustom.cpp index 82f9536..18b1b65 100644 --- a/server/scrcustom.cpp +++ b/server/scrcustom.cpp @@ -634,10 +634,13 @@ static cell AMX_NATIVE_CALL n_GangZoneHideForPlayer(AMX *amx, cell *params) return 1; } +// native GangZoneHideForAll(zone) static cell AMX_NATIVE_CALL n_GangZoneHideForAll(AMX *amx, cell *params) { - // TODO: GangZoneHideForAll - return 0; + CGangZonePool *pGangZonePool = pNetGame->GetGangZonePool(); + if (!pGangZonePool || !pGangZonePool->GetSlotState(params[1])) return 0; + pGangZonePool->HideForAll(params[1]); + return 1; } static cell AMX_NATIVE_CALL n_GangZoneFlashForPlayer(AMX *amx, cell *params)