2004-02-21 19:36:35 +00:00
|
|
|
/* AMX Mod X
|
|
|
|
* Admin Help Plugin
|
2004-01-31 20:56:22 +00:00
|
|
|
*
|
2004-02-21 19:36:35 +00:00
|
|
|
* by the AMX Mod X Development Team
|
|
|
|
* originally developed by tcquest78
|
2004-01-31 20:56:22 +00:00
|
|
|
*
|
2004-02-21 19:36:35 +00:00
|
|
|
* This file is part of AMX Mod X.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2005-09-12 21:06:24 +00:00
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2004-02-21 19:36:35 +00:00
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the author gives permission to
|
|
|
|
* link the code of this program with the Half-Life Game Engine ("HL
|
2005-09-12 21:06:24 +00:00
|
|
|
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
|
2004-02-21 19:36:35 +00:00
|
|
|
* L.L.C ("Valve"). You must obey the GNU General Public License in all
|
|
|
|
* respects for all of the code used other than the HL Engine and MODs
|
|
|
|
* from Valve. If you modify this file, you may extend this exception
|
|
|
|
* to your version of the file, but you are not obligated to do so. If
|
|
|
|
* you do not wish to do so, delete this exception statement from your
|
|
|
|
* version.
|
2004-01-31 20:56:22 +00:00
|
|
|
*/
|
|
|
|
|
2004-03-05 19:35:38 +00:00
|
|
|
#include <amxmodx>
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
#define DISPLAY_MSG // Comment to disable message on join
|
|
|
|
#define HELPAMOUNT 10 // Number of commands per page
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public plugin_init()
|
|
|
|
{
|
|
|
|
register_plugin("Admin Help", AMXX_VERSION_STR, "AMXX Dev Team")
|
|
|
|
register_dictionary("adminhelp.txt")
|
|
|
|
register_concmd("amx_help", "cmdHelp", 0, "<page> [nr of cmds (only for server)] - displays this help")
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
|
|
|
|
2004-08-13 11:20:12 +00:00
|
|
|
#if defined DISPLAY_MSG
|
2005-09-12 21:06:24 +00:00
|
|
|
public client_putinserver(id)
|
|
|
|
{
|
|
|
|
if (is_user_bot(id))
|
|
|
|
return
|
|
|
|
|
|
|
|
set_task(15.0, "dispInfo", id)
|
2004-08-13 11:20:12 +00:00
|
|
|
}
|
2005-02-21 00:31:52 +00:00
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public client_disconnect(id)
|
|
|
|
{
|
2005-02-21 00:31:52 +00:00
|
|
|
remove_task(id)
|
|
|
|
}
|
2004-08-13 11:20:12 +00:00
|
|
|
#endif
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public cmdHelp(id, level, cid)
|
|
|
|
{
|
2004-05-16 11:31:41 +00:00
|
|
|
new arg1[8], flags = get_user_flags(id)
|
2013-08-05 15:44:15 +00:00
|
|
|
new start = read_argv(1, arg1, charsmax(arg1)) ? str_to_num(arg1) : 1
|
2004-05-16 11:31:41 +00:00
|
|
|
new lHelpAmount = HELPAMOUNT
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2007-03-30 01:52:10 +00:00
|
|
|
// HACK: ADMIN_ADMIN is never set as a user's actual flags, so those types of commands never show
|
|
|
|
if (flags > 0 && !(flags & ADMIN_USER))
|
|
|
|
{
|
|
|
|
flags |= ADMIN_ADMIN;
|
|
|
|
}
|
|
|
|
|
2004-05-16 11:31:41 +00:00
|
|
|
if (id == 0 && read_argc() == 3)
|
2013-08-05 15:44:15 +00:00
|
|
|
lHelpAmount = read_argv(2, arg1, charsmax(arg1)) ? str_to_num(arg1) : HELPAMOUNT
|
2004-05-16 11:31:41 +00:00
|
|
|
|
|
|
|
if (--start < 0)
|
|
|
|
start = 0
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
new clcmdsnum = get_concmdsnum(flags, id)
|
2004-05-16 11:31:41 +00:00
|
|
|
|
|
|
|
if (start >= clcmdsnum)
|
|
|
|
start = clcmdsnum - 1
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
console_print(id, "^n----- %L -----", id, "HELP_COMS")
|
|
|
|
|
2004-05-16 11:31:41 +00:00
|
|
|
new info[128], cmd[32], eflags
|
|
|
|
new end = start + lHelpAmount // HELPAMOUNT
|
|
|
|
|
|
|
|
if (end > clcmdsnum)
|
|
|
|
end = clcmdsnum
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
for (new i = start; i < end; i++)
|
|
|
|
{
|
2013-08-05 15:44:15 +00:00
|
|
|
get_concmd(i, cmd, charsmax(cmd), eflags, info, charsmax(info), flags, id)
|
2005-09-12 21:06:24 +00:00
|
|
|
console_print(id, "%3d: %s %s", i + 1, cmd, info)
|
2004-05-16 11:31:41 +00:00
|
|
|
}
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
console_print(id, "----- %L -----", id, "HELP_ENTRIES", start + 1, end, clcmdsnum)
|
2004-05-16 11:31:41 +00:00
|
|
|
|
|
|
|
if (end < clcmdsnum)
|
2005-09-12 21:06:24 +00:00
|
|
|
console_print(id, "----- %L -----", id, "HELP_USE_MORE", end + 1)
|
2004-05-16 11:31:41 +00:00
|
|
|
else
|
2005-09-12 21:06:24 +00:00
|
|
|
console_print(id, "----- %L -----", id, "HELP_USE_BEGIN")
|
2004-05-16 11:31:41 +00:00
|
|
|
|
|
|
|
return PLUGIN_HANDLED
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
|
|
|
|
2004-08-13 11:20:12 +00:00
|
|
|
#if defined DISPLAY_MSG
|
2005-09-12 21:06:24 +00:00
|
|
|
public dispInfo(id)
|
|
|
|
{
|
|
|
|
client_print(id, print_chat, "%L", id, "TYPE_HELP")
|
2013-08-05 15:44:15 +00:00
|
|
|
|
|
|
|
static amx_nextmap, mp_timelimit = 0
|
|
|
|
if( !mp_timelimit )
|
|
|
|
{
|
|
|
|
amx_nextmap = get_cvar_pointer("amx_nextmap")
|
|
|
|
mp_timelimit = get_cvar_pointer("mp_timelimit")
|
|
|
|
}
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
new nextmap[32]
|
2013-08-05 15:44:15 +00:00
|
|
|
if( amx_nextmap )
|
|
|
|
{
|
|
|
|
get_pcvar_string(amx_nextmap, nextmap, charsmax(nextmap))
|
|
|
|
}
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2013-08-05 15:44:15 +00:00
|
|
|
if (get_pcvar_float(mp_timelimit))
|
2005-09-12 21:06:24 +00:00
|
|
|
{
|
|
|
|
new timeleft = get_timeleft()
|
|
|
|
|
|
|
|
if (timeleft > 0)
|
|
|
|
{
|
|
|
|
client_print(id, print_chat, "%L", id, "TIME_INFO_1", timeleft / 60, timeleft % 60, nextmap)
|
2013-08-05 15:44:15 +00:00
|
|
|
} else if (amx_nextmap) {
|
2005-09-12 21:06:24 +00:00
|
|
|
client_print(id, print_chat, "%L", id, "TIME_INFO_2", nextmap)
|
|
|
|
}
|
|
|
|
}
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
2005-09-12 21:06:24 +00:00
|
|
|
#endif
|