From 8af0baef6e477dc7513713b871872240f8025cb2 Mon Sep 17 00:00:00 2001 From: Dogan Date: Tue, 17 Sep 2019 17:39:54 +0200 Subject: [PATCH] NoShake: better description for chat --- NoShake/scripting/NoShake.sp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NoShake/scripting/NoShake.sp b/NoShake/scripting/NoShake.sp index a62de313..7e94a822 100644 --- a/NoShake/scripting/NoShake.sp +++ b/NoShake/scripting/NoShake.sp @@ -66,9 +66,9 @@ public void OnConVarChanged(ConVar convar, const char[] oldValue, const char[] n g_bNoShakeGlobal = convar.BoolValue; if(g_bNoShakeGlobal) - CPrintToChatAll("{cyan}[NoShake] {white}has been enabled globally."); + CPrintToChatAll("{cyan}[NoShake] {white}Screen Shaking has been disabled globally."); else - CPrintToChatAll("{cyan}[NoShake] {white}has been disabled globally."); + CPrintToChatAll("{cyan}[NoShake] {white}Screen Shaking has been reenabled globally."); } @@ -99,13 +99,13 @@ public void ToggleShake(int client) { if(g_bNoShakeGlobal) { - CPrintToChat(client, "{cyan}[NoShake] {white}is currently enabled globally."); + CPrintToChat(client, "{cyan}[NoShake] {white}Screen Shaking is currently disabled globally."); return; } g_bNoShake[client] = !g_bNoShake[client]; SetClientCookie(client, g_hNoShakeCookie, g_bNoShake[client] ? "1" : ""); - CPrintToChat(client, "{cyan}[NoShake] {white}%s", g_bNoShake[client] ? "has been enabled." : "has been disabled."); + CPrintToChat(client, "{cyan}[NoShake] {white}%s", g_bNoShake[client] ? "You turned off Screen Shaking." : "You turned on Screen Shaking."); } //----------------------------------------------------------------------------------------------------