From 2ab4a8a44ab0d19f80ca5e436abe1b3d5ae445a9 Mon Sep 17 00:00:00 2001 From: Kia Date: Mon, 11 Aug 2014 16:38:16 +0200 Subject: [PATCH] Added Silent Transfer Option in Team Menu. --- plugins/lang/plmenu.txt | 3 ++- plugins/plmenu.sma | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/lang/plmenu.txt b/plugins/lang/plmenu.txt index c6264dd9..6e276665 100755 --- a/plugins/lang/plmenu.txt +++ b/plugins/lang/plmenu.txt @@ -31,7 +31,7 @@ ADMIN_TRANSF_1 = ADMIN: verschiebt %s zu den %s ADMIN_TRANSF_2 = ADMIN %s: verschiebt %s zu den %s TEAM_MENU = Menu > Team TRANSF_TO = zu den %s geschoben -TRANSF_TO = Leise verschrieben +TRANSF_SILENT = Stiller Transfer CL_CMD_MENU = Menu > Spielerbefehle NO_CMDS = keine Befehle verfuegbar CANT_PERF_PLAYER = Diese Aktion kann nicht am spieler "%s" ausgefuehrt werden. @@ -86,6 +86,7 @@ ADMIN_TRANSF_1 = ADMIN: transfere %s en %s ADMIN_TRANSF_2 = ADMIN %s: transfere %s en %s TEAM_MENU = Menu Equipe TRANSF_TO = Transferer en %s +TRANSF_SILENT = Transfert silencieux CL_CMD_MENU = Menu Cmds Client NO_CMDS = Aucune commande disponible CANT_PERF_PLAYER = Cette action ne peut pas etre faite sur le joueur "%s" diff --git a/plugins/plmenu.sma b/plugins/plmenu.sma index 55de730a..177eff6d 100755 --- a/plugins/plmenu.sma +++ b/plugins/plmenu.sma @@ -66,7 +66,7 @@ new allow_spectators, mp_limitteams new p_amx_tempban_maxtime; new Trie:g_tempBans; -new g_silent = false +new g_silent[33] public plugin_natives() { @@ -665,6 +665,7 @@ public cmdKickMenu(id, level, cid) public client_putinserver(id) { g_CSPlayerCanSwitchFromSpec[id] = false + g_silent[id] = false } public Event_TeamInfo() @@ -692,7 +693,7 @@ public actionTeamMenu(id, key) { case 6: { - g_silent = !g_silent + g_silent[id] = !g_silent[id] displayTeamMenu(id, g_menuPosition[id]) } case 7: @@ -884,7 +885,7 @@ displayTeamMenu(id, pos) } } - len += format(menuBody[len], charsmax(menuBody) - len, "^n7. %L: %L", id, "TRANSF_SILENT", id, g_silent ? "YES" : "NO") + len += format(menuBody[len], charsmax(menuBody) - len, "^n7. %L: %L", id, "TRANSF_SILENT", id, g_silent[id] ? "YES" : "NO") len += format(menuBody[len], charsmax(menuBody) - len, "^n8. %L^n", id, "TRANSF_TO", g_CSTeamNames[g_menuOption[id] % 3]) if (end != g_menuPlayersNum[id])