From b824afd1a330b32fad08fe7e714e8fce4513c36c Mon Sep 17 00:00:00 2001 From: zaCade Date: Sun, 9 Mar 2025 16:34:33 +0100 Subject: [PATCH] [entWatch-beacon] Formatting, change event hook to void. --- entWatch4/scripting/entWatch-beacon.sp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/entWatch4/scripting/entWatch-beacon.sp b/entWatch4/scripting/entWatch-beacon.sp index 2f31bfc..e9554f3 100644 --- a/entWatch4/scripting/entWatch-beacon.sp +++ b/entWatch4/scripting/entWatch-beacon.sp @@ -29,7 +29,7 @@ public Plugin myinfo = author = "Neon", description = "", version = "1.0.0", - url = "https://steamcommunity.com/id/n3ontm" + url = "https://steamcommunity.com/id/n3ontm" }; //---------------------------------------------------------------------------------------------------- @@ -40,14 +40,16 @@ public void OnPluginStart() HookEvent("round_start", Event_RoundStart, EventHookMode_Pre); } -public Action Event_RoundStart(Event event, const char[] name, bool dontBroadcast) +//---------------------------------------------------------------------------------------------------- +// Purpose: +//---------------------------------------------------------------------------------------------------- +public void Event_RoundStart(Event event, const char[] name, bool dontBroadcast) { - for (int i = 0; i < sizeof(g_bDropped); i++) - { - g_bDropped[i] = false; - g_bActive[i] = false; - } - return Plugin_Continue; + for (int i = 0; i < sizeof(g_bDropped); i++) + { + g_bDropped[i] = false; + g_bActive[i] = false; + } } //---------------------------------------------------------------------------------------------------- @@ -142,7 +144,7 @@ public Action Timer_Beacon(Handle timer, any index) return Plugin_Stop; } - CConfig cfg = item.dConfig ; + CConfig cfg = item.dConfig; if (cfg.iMode == 2 && item.iTimesUsed >= cfg.iMaxUses) { @@ -151,7 +153,7 @@ public Action Timer_Beacon(Handle timer, any index) } float fOrigin[3]; - GetEntPropVector(item.iWeapon, Prop_Send, "m_vecOrigin", fOrigin) + GetEntPropVector(item.iWeapon, Prop_Send, "m_vecOrigin", fOrigin); char sColor[32]; item.dConfig.GetColor(sColor, sizeof(sColor)); @@ -165,10 +167,8 @@ public Action Timer_Beacon(Handle timer, any index) iVecColor[2] = ((iColor >> 0) & 0xFF); iVecColor[3] = 255 - TE_SetupBeamRingPoint(fOrigin, 5.0, 50.0, g_iBeamSprite, g_iHaloSprite, 0, 10, 0.6, 6.0, 0.5, iVecColor, 10, 0); TE_SendToAll(); return Plugin_Continue; - }