Plmenu: replace len hardcoded content by charsmax
This commit is contained in:
		@@ -1,15 +1,15 @@
 | 
			
		||||
// vim: set ts=4 sw=4 tw=99 noet:
 | 
			
		||||
//
 | 
			
		||||
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
 | 
			
		||||
// Copyright (C) The AMX Mod X Development Team.
 | 
			
		||||
//
 | 
			
		||||
// This software is licensed under the GNU General Public License, version 3 or higher.
 | 
			
		||||
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
 | 
			
		||||
//     https://alliedmods.net/amxmodx-license
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Players Menu Plugin
 | 
			
		||||
//
 | 
			
		||||
// vim: set ts=4 sw=4 tw=99 noet:
 | 
			
		||||
//
 | 
			
		||||
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
 | 
			
		||||
// Copyright (C) The AMX Mod X Development Team.
 | 
			
		||||
//
 | 
			
		||||
// This software is licensed under the GNU General Public License, version 3 or higher.
 | 
			
		||||
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
 | 
			
		||||
//     https://alliedmods.net/amxmodx-license
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Players Menu Plugin
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
#include <amxmodx>
 | 
			
		||||
#include <amxmisc>
 | 
			
		||||
@@ -146,8 +146,8 @@ public plugin_init()
 | 
			
		||||
	g_gametype = ns_get_gameplay();
 | 
			
		||||
	
 | 
			
		||||
	new clcmds_ini_file[64]
 | 
			
		||||
	get_configsdir(clcmds_ini_file, 63)
 | 
			
		||||
	format(clcmds_ini_file, 63, "%s/clcmds.ini", clcmds_ini_file)
 | 
			
		||||
	get_configsdir(clcmds_ini_file, charsmax(clcmds_ini_file))
 | 
			
		||||
	format(clcmds_ini_file, charsmax(clcmds_ini_file), "%s/clcmds.ini", clcmds_ini_file)
 | 
			
		||||
	load_settings(clcmds_ini_file)
 | 
			
		||||
	
 | 
			
		||||
	// initialize the ns team names
 | 
			
		||||
@@ -306,10 +306,10 @@ public actionBanMenu(id, key)
 | 
			
		||||
			new player = g_menuPlayers[id][g_menuPosition[id] * 7 + key]
 | 
			
		||||
			new name[MAX_NAME_LENGTH], name2[MAX_NAME_LENGTH], authid[32], authid2[32]
 | 
			
		||||
		
 | 
			
		||||
			get_user_name(player, name2, 31)
 | 
			
		||||
			get_user_authid(id, authid, 31)
 | 
			
		||||
			get_user_authid(player, authid2, 31)
 | 
			
		||||
			get_user_name(id, name, 31)
 | 
			
		||||
			get_user_name(player, name2, charsmax(name2))
 | 
			
		||||
			get_user_authid(id, authid, charsmax(authid))
 | 
			
		||||
			get_user_authid(player, authid2, charsmax(authid2))
 | 
			
		||||
			get_user_name(id, name, charsmax(name))
 | 
			
		||||
			
 | 
			
		||||
			new userid2 = get_user_userid(player)
 | 
			
		||||
			
 | 
			
		||||
@@ -325,7 +325,7 @@ public actionBanMenu(id, key)
 | 
			
		||||
			else
 | 
			
		||||
			{
 | 
			
		||||
				new tempTime[32];
 | 
			
		||||
				formatex(tempTime,sizeof(tempTime)-1,"%d",banTime);
 | 
			
		||||
				formatex(tempTime,charsmax(tempTime),"%d",banTime);
 | 
			
		||||
				for (new i = 1; i <= MaxClients; i++)
 | 
			
		||||
				{
 | 
			
		||||
					show_activity_id(i, id, name, "%L %s %L", i, "BAN", name2, i, "FOR_MIN", tempTime);
 | 
			
		||||
@@ -341,7 +341,7 @@ public actionBanMenu(id, key)
 | 
			
		||||
			{
 | 
			
		||||
				/* END OF MODIFICATIONS BY MISTAGEE */
 | 
			
		||||
				new ipa[32]
 | 
			
		||||
				get_user_ip(player, ipa, 31, 1)
 | 
			
		||||
				get_user_ip(player, ipa, charsmax(ipa), 1)
 | 
			
		||||
				
 | 
			
		||||
				server_cmd("addip %d %s;writeip", banTime, ipa)
 | 
			
		||||
				if( g_tempBans )
 | 
			
		||||
@@ -383,7 +383,7 @@ displayBanMenu(id, pos)
 | 
			
		||||
	if (start >= g_menuPlayersNum[id])
 | 
			
		||||
		start = pos = g_menuPosition[id] = 0
 | 
			
		||||
 | 
			
		||||
	new len = format(menuBody, 511, "%L %d/%d^n^n", id, "BAN_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new len = format(menuBody, charsmax(menuBody), "%L %d/%d^n^n", id, "BAN_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new end = start + 7
 | 
			
		||||
	new keys = MENU_KEY_0|MENU_KEY_8
 | 
			
		||||
 | 
			
		||||
@@ -393,35 +393,35 @@ displayBanMenu(id, pos)
 | 
			
		||||
	for (new a = start; a < end; ++a)
 | 
			
		||||
	{
 | 
			
		||||
		i = g_menuPlayers[id][a]
 | 
			
		||||
		get_user_name(i, name, 31)
 | 
			
		||||
		get_user_name(i, name, charsmax(name))
 | 
			
		||||
 | 
			
		||||
		if (is_user_bot(i) || access(i, ADMIN_IMMUNITY))
 | 
			
		||||
		{
 | 
			
		||||
			++b
 | 
			
		||||
			
 | 
			
		||||
			len += format(menuBody[len], 511-len, "#. %s^n", name)
 | 
			
		||||
			len += format(menuBody[len], charsmax(menuBody)-len, "#. %s^n", name)
 | 
			
		||||
		} else {
 | 
			
		||||
			keys |= (1<<b)
 | 
			
		||||
				
 | 
			
		||||
			if (is_user_admin(i))
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
			else
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s^n", ++b, name)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (g_menuSettings[id])
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %L^n", id, "BAN_FOR_MIN", g_menuSettings[id])
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "BAN_FOR_MIN", g_menuSettings[id])
 | 
			
		||||
	else
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %L^n", id, "BAN_PERM")
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "BAN_PERM")
 | 
			
		||||
 | 
			
		||||
	if (end != g_menuPlayersNum[id])
 | 
			
		||||
	{
 | 
			
		||||
		format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		keys |= MENU_KEY_9
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
 | 
			
		||||
	show_menu(id, keys, menuBody, -1, "Ban Menu")
 | 
			
		||||
}
 | 
			
		||||
@@ -470,7 +470,7 @@ public actionSlapMenu(id, key)
 | 
			
		||||
			new player = g_menuPlayers[id][g_menuPosition[id] * 7 + key]
 | 
			
		||||
			new name2[MAX_NAME_LENGTH]
 | 
			
		||||
			
 | 
			
		||||
			get_user_name(player, name2, 31)
 | 
			
		||||
			get_user_name(player, name2, charsmax(name2))
 | 
			
		||||
 | 
			
		||||
			if (!is_user_alive(player))
 | 
			
		||||
			{
 | 
			
		||||
@@ -481,9 +481,9 @@ public actionSlapMenu(id, key)
 | 
			
		||||
 | 
			
		||||
			new authid[32], authid2[32], name[MAX_NAME_LENGTH]
 | 
			
		||||
 | 
			
		||||
			get_user_authid(id, authid, 31)
 | 
			
		||||
			get_user_authid(player, authid2, 31)
 | 
			
		||||
			get_user_name(id, name, 31)
 | 
			
		||||
			get_user_authid(id, authid, charsmax(authid))
 | 
			
		||||
			get_user_authid(player, authid2, charsmax(authid2))
 | 
			
		||||
			get_user_name(id, name, charsmax(name))
 | 
			
		||||
 | 
			
		||||
			new aSize = ArraySize(g_slapsettings);
 | 
			
		||||
			if (aSize > 1 && g_menuOption[id] < aSize -1)
 | 
			
		||||
@@ -524,7 +524,7 @@ displaySlapMenu(id, pos)
 | 
			
		||||
	if (start >= g_menuPlayersNum[id])
 | 
			
		||||
		start = pos = g_menuPosition[id] = 0
 | 
			
		||||
 | 
			
		||||
	new len = format(menuBody, 511, "%L %d/%d^n^n", id, "SLAP_SLAY_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new len = format(menuBody, charsmax(menuBody), "%L %d/%d^n^n", id, "SLAP_SLAY_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new end = start + 7
 | 
			
		||||
	new keys = MENU_KEY_0|MENU_KEY_8
 | 
			
		||||
 | 
			
		||||
@@ -534,37 +534,37 @@ displaySlapMenu(id, pos)
 | 
			
		||||
	for (new a = start; a < end; ++a)
 | 
			
		||||
	{
 | 
			
		||||
		i = g_menuPlayers[id][a]
 | 
			
		||||
		get_user_name(i, name, 31)
 | 
			
		||||
		get_user_name(i, name, charsmax(name))
 | 
			
		||||
		
 | 
			
		||||
		get_user_team(i, team, 3)
 | 
			
		||||
		get_user_team(i, team, charsmax(team))
 | 
			
		||||
 | 
			
		||||
		if (!is_user_alive(i) || access(i, ADMIN_IMMUNITY))
 | 
			
		||||
		{
 | 
			
		||||
			++b
 | 
			
		||||
		
 | 
			
		||||
			len += format(menuBody[len], 511-len, "#. %s   %s^n", name, team)		
 | 
			
		||||
			len += format(menuBody[len], charsmax(menuBody)-len, "#. %s   %s^n", name, team)		
 | 
			
		||||
		} else {
 | 
			
		||||
			keys |= (1<<b)
 | 
			
		||||
				
 | 
			
		||||
			if (is_user_admin(i))
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s *   %s^n", ++b, name, team)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s *   %s^n", ++b, name, team)
 | 
			
		||||
			else
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s   %s^n", ++b, name, team)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s   %s^n", ++b, name, team)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (g_menuOption[id] == ArraySize(g_slapsettings) - 1)
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %L^n", id, "SLAY")
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "SLAY")
 | 
			
		||||
	else
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %L^n", id, "SLAP_WITH_DMG", g_menuSettings[id])
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "SLAP_WITH_DMG", g_menuSettings[id])
 | 
			
		||||
 | 
			
		||||
	if (end != g_menuPlayersNum[id])
 | 
			
		||||
	{
 | 
			
		||||
		format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		keys |= MENU_KEY_9
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
 | 
			
		||||
	show_menu(id, keys, menuBody, -1, "Slap/Slay Menu")
 | 
			
		||||
}
 | 
			
		||||
@@ -603,10 +603,10 @@ public actionKickMenu(id, key)
 | 
			
		||||
			new player = g_menuPlayers[id][g_menuPosition[id] * 8 + key]
 | 
			
		||||
			new authid[32], authid2[32], name[MAX_NAME_LENGTH], name2[MAX_NAME_LENGTH]
 | 
			
		||||
			
 | 
			
		||||
			get_user_authid(id, authid, 31)
 | 
			
		||||
			get_user_authid(player, authid2, 31)
 | 
			
		||||
			get_user_name(id, name, 31)
 | 
			
		||||
			get_user_name(player, name2, 31)
 | 
			
		||||
			get_user_authid(id, authid, charsmax(authid))
 | 
			
		||||
			get_user_authid(player, authid2, charsmax(authid2))
 | 
			
		||||
			get_user_name(id, name, charsmax(name))
 | 
			
		||||
			get_user_name(player, name2, charsmax(name2))
 | 
			
		||||
			
 | 
			
		||||
			new userid2 = get_user_userid(player)
 | 
			
		||||
 | 
			
		||||
@@ -641,7 +641,7 @@ displayKickMenu(id, pos)
 | 
			
		||||
	if (start >= g_menuPlayersNum[id])
 | 
			
		||||
		start = pos = g_menuPosition[id] = 0
 | 
			
		||||
 | 
			
		||||
	new len = format(menuBody, 511, "%L %d/%d^n^n", id, "KICK_MENU", pos + 1, (g_menuPlayersNum[id] / 8 + ((g_menuPlayersNum[id] % 8) ? 1 : 0)))
 | 
			
		||||
	new len = format(menuBody, charsmax(menuBody), "%L %d/%d^n^n", id, "KICK_MENU", pos + 1, (g_menuPlayersNum[id] / 8 + ((g_menuPlayersNum[id] % 8) ? 1 : 0)))
 | 
			
		||||
	new end = start + 8
 | 
			
		||||
	new keys = MENU_KEY_0
 | 
			
		||||
 | 
			
		||||
@@ -651,30 +651,30 @@ displayKickMenu(id, pos)
 | 
			
		||||
	for (new a = start; a < end; ++a)
 | 
			
		||||
	{
 | 
			
		||||
		i = g_menuPlayers[id][a]
 | 
			
		||||
		get_user_name(i, name, 31)
 | 
			
		||||
		get_user_name(i, name, charsmax(name))
 | 
			
		||||
 | 
			
		||||
		if (access(i, ADMIN_IMMUNITY))
 | 
			
		||||
		{
 | 
			
		||||
			++b
 | 
			
		||||
		
 | 
			
		||||
			len += format(menuBody[len], 511-len, "#. %s^n", name)
 | 
			
		||||
			len += format(menuBody[len], charsmax(menuBody)-len, "#. %s^n", name)
 | 
			
		||||
		} else {
 | 
			
		||||
			keys |= (1<<b)
 | 
			
		||||
				
 | 
			
		||||
			if (is_user_admin(i))
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
			else
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s^n", ++b, name)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (end != g_menuPlayersNum[id])
 | 
			
		||||
	{
 | 
			
		||||
		format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		keys |= MENU_KEY_9
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
 | 
			
		||||
	show_menu(id, keys, menuBody, -1, "Kick Menu")
 | 
			
		||||
}
 | 
			
		||||
@@ -707,10 +707,10 @@ public actionTeamMenu(id, key)
 | 
			
		||||
			new player = g_menuPlayers[id][g_menuPosition[id] * 7 + key]
 | 
			
		||||
			new authid[32], authid2[32], name[MAX_NAME_LENGTH], name2[MAX_NAME_LENGTH]
 | 
			
		||||
 | 
			
		||||
			get_user_name(player, name2, 31)
 | 
			
		||||
			get_user_authid(id, authid, 31)
 | 
			
		||||
			get_user_authid(player, authid2, 31)
 | 
			
		||||
			get_user_name(id, name, 31)
 | 
			
		||||
			get_user_name(player, name2, charsmax(name2))
 | 
			
		||||
			get_user_authid(id, authid, charsmax(authid))
 | 
			
		||||
			get_user_authid(player, authid2, charsmax(authid2))
 | 
			
		||||
			get_user_name(id, name, charsmax(name))
 | 
			
		||||
				
 | 
			
		||||
			log_amx("Cmd: ^"%s<%d><%s><>^" transfer ^"%s<%d><%s><>^" (team ^"%s^")", name, get_user_userid(id), authid, name2, get_user_userid(player), authid2, g_PrettyTeamNames[g_menuOption[id]])
 | 
			
		||||
 | 
			
		||||
@@ -745,7 +745,7 @@ displayTeamMenu(id, pos)
 | 
			
		||||
	if (start >= g_menuPlayersNum[id])
 | 
			
		||||
		start = pos = g_menuPosition[id] = 0
 | 
			
		||||
 | 
			
		||||
	new len = format(menuBody, 511, "%L %d/%d^n^n", id, "TEAM_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new len = format(menuBody, charsmax(menuBody), "%L %d/%d^n^n", id, "TEAM_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new end = start + 7
 | 
			
		||||
	new keys = MENU_KEY_0|MENU_KEY_8
 | 
			
		||||
 | 
			
		||||
@@ -755,34 +755,34 @@ displayTeamMenu(id, pos)
 | 
			
		||||
	for (new a = start; a < end; ++a)
 | 
			
		||||
	{
 | 
			
		||||
		i = g_menuPlayers[id][a]
 | 
			
		||||
		get_user_name(i, name, 31)
 | 
			
		||||
		get_user_name(i, name, charsmax(name))
 | 
			
		||||
		
 | 
			
		||||
		iteam = GetNSTeam(i, team, 3)
 | 
			
		||||
		iteam = GetNSTeam(i, team, charsmax(team))
 | 
			
		||||
 | 
			
		||||
		if (iteam == g_menuOption[id] || access(i, ADMIN_IMMUNITY))
 | 
			
		||||
		{
 | 
			
		||||
			++b
 | 
			
		||||
			
 | 
			
		||||
			len += format(menuBody[len], 511-len, "#. %s   %s^n", name, team)		
 | 
			
		||||
			len += format(menuBody[len], charsmax(menuBody)-len, "#. %s   %s^n", name, team)		
 | 
			
		||||
		} else {
 | 
			
		||||
			keys |= (1<<b)
 | 
			
		||||
				
 | 
			
		||||
			if (is_user_admin(i))
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s *   %s^n", ++b, name, team)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s *   %s^n", ++b, name, team)
 | 
			
		||||
			else
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s   %s^n", ++b, name, team)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s   %s^n", ++b, name, team)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	len += format(menuBody[len], 511-len, "^n8. %L^n", id, "TRANSF_TO", g_PrettyTeamNames[g_menuOption[id]])
 | 
			
		||||
	len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "TRANSF_TO", g_PrettyTeamNames[g_menuOption[id]])
 | 
			
		||||
 | 
			
		||||
	if (end != g_menuPlayersNum[id])
 | 
			
		||||
	{
 | 
			
		||||
		format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		keys |= MENU_KEY_9
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
 | 
			
		||||
	show_menu(id, keys, menuBody, -1, "Team Menu")
 | 
			
		||||
}
 | 
			
		||||
@@ -822,14 +822,14 @@ public actionClcmdMenu(id, key)
 | 
			
		||||
			{
 | 
			
		||||
				new command[64], authid[32], name[MAX_NAME_LENGTH], userid[32]
 | 
			
		||||
				
 | 
			
		||||
				copy(command, 63, g_clcmdCmd[g_menuSelect[id][g_menuOption[id]]])
 | 
			
		||||
				get_user_authid(player, authid, 31)
 | 
			
		||||
				get_user_name(player, name, 31)
 | 
			
		||||
				num_to_str(get_user_userid(player), userid, 31)
 | 
			
		||||
				copy(command, charsmax(command), g_clcmdCmd[g_menuSelect[id][g_menuOption[id]]])
 | 
			
		||||
				get_user_authid(player, authid, charsmax(authid))
 | 
			
		||||
				get_user_name(player, name, charsmax(name))
 | 
			
		||||
				num_to_str(get_user_userid(player), userid, charsmax(userid))
 | 
			
		||||
				
 | 
			
		||||
				replace(command, 63, "%userid%", userid)
 | 
			
		||||
				replace(command, 63, "%authid%", authid)
 | 
			
		||||
				replace(command, 63, "%name%", name)
 | 
			
		||||
				replace(command, charsmax(command), "%userid%", userid)
 | 
			
		||||
				replace(command, charsmax(command), "%authid%", authid)
 | 
			
		||||
				replace(command, charsmax(command), "%name%", name)
 | 
			
		||||
				
 | 
			
		||||
				if (flags & 1)
 | 
			
		||||
				{
 | 
			
		||||
@@ -865,7 +865,7 @@ displayClcmdMenu(id, pos)
 | 
			
		||||
	if (start >= g_menuPlayersNum[id])
 | 
			
		||||
		start = pos = g_menuPosition[id] = 0
 | 
			
		||||
 | 
			
		||||
	new len = format(menuBody, 511, "%L %d/%d^n^n", id, "CL_CMD_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new len = format(menuBody, charsmax(menuBody), "%L %d/%d^n^n", id, "CL_CMD_MENU", pos + 1, (g_menuPlayersNum[id] / 7 + ((g_menuPlayersNum[id] % 7) ? 1 : 0)))
 | 
			
		||||
	new end = start + 7
 | 
			
		||||
	new keys = MENU_KEY_0|MENU_KEY_8
 | 
			
		||||
 | 
			
		||||
@@ -875,35 +875,35 @@ displayClcmdMenu(id, pos)
 | 
			
		||||
	for (new a = start; a < end; ++a)
 | 
			
		||||
	{
 | 
			
		||||
		i = g_menuPlayers[id][a]
 | 
			
		||||
		get_user_name(i, name, 31)
 | 
			
		||||
		get_user_name(i, name, charsmax(name))
 | 
			
		||||
 | 
			
		||||
		if (!g_menuSelectNum[id] || access(i, ADMIN_IMMUNITY))
 | 
			
		||||
		{
 | 
			
		||||
			++b
 | 
			
		||||
			
 | 
			
		||||
			len += format(menuBody[len], 511-len, "#. %s^n", name)		
 | 
			
		||||
			len += format(menuBody[len], charsmax(menuBody)-len, "#. %s^n", name)		
 | 
			
		||||
		} else {
 | 
			
		||||
			keys |= (1<<b)
 | 
			
		||||
				
 | 
			
		||||
			if (is_user_admin(i))
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s *^n", ++b, name)
 | 
			
		||||
			else
 | 
			
		||||
				len += format(menuBody[len], 511-len, "%d. %s^n", ++b, name)
 | 
			
		||||
				len += format(menuBody[len], charsmax(menuBody)-len, "%d. %s^n", ++b, name)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (g_menuSelectNum[id])
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %s^n", g_clcmdName[g_menuSelect[id][g_menuOption[id]]])
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %s^n", g_clcmdName[g_menuSelect[id][g_menuOption[id]]])
 | 
			
		||||
	else
 | 
			
		||||
		len += format(menuBody[len], 511-len, "^n8. %L^n", id, "NO_CMDS")
 | 
			
		||||
		len += format(menuBody[len], charsmax(menuBody)-len, "^n8. %L^n", id, "NO_CMDS")
 | 
			
		||||
 | 
			
		||||
	if (end != g_menuPlayersNum[id])
 | 
			
		||||
	{
 | 
			
		||||
		format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		keys |= MENU_KEY_9
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
		format(menuBody[len], charsmax(menuBody)-len, "^n0. %L", id, pos ? "BACK" : "EXIT")
 | 
			
		||||
 | 
			
		||||
	show_menu(id, keys, menuBody, -1, "Client Cmds Menu")
 | 
			
		||||
}
 | 
			
		||||
@@ -934,13 +934,13 @@ load_settings(szFilename[])
 | 
			
		||||
	new text[256], szFlags[32], szAccess[32]
 | 
			
		||||
	new a, pos = 0
 | 
			
		||||
 | 
			
		||||
	while (g_clcmdNum < MAX_CLCMDS && read_file(szFilename, pos++, text, 255, a))
 | 
			
		||||
	while (g_clcmdNum < MAX_CLCMDS && read_file(szFilename, pos++, text, charsmax(text), a))
 | 
			
		||||
	{
 | 
			
		||||
		if (text[0] == ';') continue
 | 
			
		||||
 | 
			
		||||
		if (parse(text, g_clcmdName[g_clcmdNum], 31, g_clcmdCmd[g_clcmdNum], 63, szFlags, 31, szAccess, 31) > 3)
 | 
			
		||||
		if (parse(text, g_clcmdName[g_clcmdNum], charsmax(g_clcmdName[]), g_clcmdCmd[g_clcmdNum], charsmax(g_clcmdCmd[]), szFlags, charsmax(szFlags), szAccess, charsmax(szAccess)) > 3)
 | 
			
		||||
		{
 | 
			
		||||
			while (replace(g_clcmdCmd[g_clcmdNum], 63, "\'", "^""))
 | 
			
		||||
			while (replace(g_clcmdCmd[g_clcmdNum], charsmax(g_clcmdCmd[]), "\'", "^""))
 | 
			
		||||
			{
 | 
			
		||||
				// do nothing
 | 
			
		||||
			}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user