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."); } //----------------------------------------------------------------------------------------------------