amxmodx/plugins/include/amxmisc.inc

212 lines
5.4 KiB
PHP
Raw Normal View History

2004-02-08 14:31:54 +03:00
/* AMX Mod X misc.
*
* by the AMX Mod X Development Team
* originally developed by OLO
2004-02-08 14:31:54 +03:00
*
* This file is provided as is (no warranties).
*/
2004-01-31 23:56:22 +03:00
#if defined _amxmisc_included
#endinput
#endif
#define _amxmisc_included
2004-10-03 10:23:25 +04:00
stock is_user_admin(id)
{
return ( get_user_flags(id)>0 && !(get_user_flags(id)&ADMIN_USER) )
}
2004-02-15 05:29:51 +03:00
stock cmd_access(id,level,cid,num) {
new has_access = 0
if ( id==(is_dedicated_server()?0:1) ) {
has_access = 1
2004-10-03 10:23:25 +04:00
} else if ( level==ADMIN_ADMIN ) {
if ( is_user_admin(id) )
has_access = 1
2004-10-03 10:23:25 +04:00
} else if ( get_user_flags(id) & level ) {
has_access = 1
2004-10-03 10:23:25 +04:00
} else if (level == ADMIN_ALL) {
has_access = 1
}
if ( has_access==0 ) {
console_print(id,"%L",id,"NO_ACC_COM")
2004-02-15 05:29:51 +03:00
return 0
2004-01-31 23:56:22 +03:00
}
2004-02-08 14:31:54 +03:00
if (read_argc() < num) {
2004-01-31 23:56:22 +03:00
new hcmd[32], hinfo[128], hflag
2004-02-08 14:31:54 +03:00
get_concmd(cid,hcmd,31,hflag,hinfo,127,level)
console_print(id,"%L: %s %s",id,"USAGE",hcmd,hinfo)
2004-02-15 05:29:51 +03:00
return 0
2004-01-31 23:56:22 +03:00
}
2004-02-15 05:29:51 +03:00
return 1
2004-01-31 23:56:22 +03:00
}
stock access(id,level) {
if ( level==ADMIN_ADMIN )
return is_user_admin(id)
return (get_user_flags(id) & level)
}
2004-01-31 23:56:22 +03:00
/* Flags:
* 1 - obey immunity
* 2 - allow yourself
* 4 - must be alive
* 8 - can't be bot */
2004-01-31 23:56:22 +03:00
stock cmd_target(id,const arg[],flags = 1) {
new player = find_player("bl",arg)
2004-02-08 14:31:54 +03:00
if (player) {
if ( player != find_player("blj",arg) ) {
console_print(id,"%L",id,"MORE_CL_MATCHT")
2004-01-31 23:56:22 +03:00
return 0
}
}
else if ( ( player = find_player("c",arg) )==0 && arg[0]=='#' && arg[1] )
2004-03-08 20:18:34 +03:00
player = find_player("k",str_to_num(arg[1]))
2004-02-08 14:31:54 +03:00
if (!player) {
console_print(id,"%L",id,"CL_NOT_FOUND")
2004-01-31 23:56:22 +03:00
return 0
}
2004-02-08 14:31:54 +03:00
if (flags & 1) {
if ((get_user_flags(player)&ADMIN_IMMUNITY) && ((flags&2)?(id!=player):true) ) {
2004-01-31 23:56:22 +03:00
new imname[32]
get_user_name(player,imname,31)
console_print(id,"%L",id,"CLIENT_IMM",imname)
2004-01-31 23:56:22 +03:00
return 0
}
}
2004-02-08 14:31:54 +03:00
if (flags & 4) {
if (!is_user_alive(player)) {
2004-01-31 23:56:22 +03:00
new imname[32]
get_user_name(player,imname,31)
console_print(id,"%L",id,"CANT_PERF_DEAD",imname)
2004-01-31 23:56:22 +03:00
return 0
}
}
2004-02-08 14:31:54 +03:00
if (flags & 8) {
if (is_user_bot(player)) {
2004-01-31 23:56:22 +03:00
new imname[32]
get_user_name(player,imname,31)
console_print(id,"%L",id,"CANT_PERF_BOT",imname)
2004-01-31 23:56:22 +03:00
return 0
}
}
return player
}
2004-02-08 14:31:54 +03:00
stock show_activity( id, const name[], {Float,_}: ... ) {
2004-01-31 23:56:22 +03:00
new buffer[128]
2004-02-08 14:31:54 +03:00
format_args( buffer , 127 , 2 )
2004-01-31 23:56:22 +03:00
switch(get_cvar_num("amx_show_activity")) {
case 2: client_print(0,print_chat,"%L %s: %s",
id, is_user_admin(id) ? "ADMIN" : "PLAYER" , name , buffer )
case 1: client_print(0,print_chat,"%L: %s",
id, is_user_admin(id) ? "ADMIN" : "PLAYER", buffer )
2004-01-31 23:56:22 +03:00
}
}
2004-07-27 20:42:59 +04:00
stock colored_menus() {
2004-01-31 23:56:22 +03:00
new mod_name[32]
get_modname(mod_name,31)
2004-07-26 19:07:25 +04:00
2004-07-27 20:42:59 +04:00
return ( equal(mod_name,"cstrike") || equal(mod_name,"czero") || equal(mod_name,"dod") )
2004-07-26 19:07:25 +04:00
}
2004-07-27 20:42:59 +04:00
stock cstrike_running() {
2004-07-26 19:07:25 +04:00
new mod_name[32]
get_modname(mod_name,31)
2004-07-28 01:06:36 +04:00
return ( equal(mod_name,"cstrike") || equal(mod_name,"czero") || equal(mod_name,"csv15") || equal(mod_name,"cs13") )
2004-07-27 20:42:59 +04:00
}
stock is_running(const mod[]) {
new mod_name[32]
get_modname(mod_name,31)
return equal(mod_name,mod)
2004-01-31 23:56:22 +03:00
}
2004-03-25 16:34:27 +03:00
stock get_basedir(name[],len)
return get_localinfo("amxx_basedir",name,len)
stock get_configsdir(name[],len)
return get_localinfo("amxx_configsdir",name,len)
2004-01-31 23:56:22 +03:00
stock get_datadir(name[],len)
return get_localinfo("amxx_datadir",name,len)
stock register_menu(title[],keys,function[],outside=0)
register_menucmd(register_menuid(title,outside),keys,function)
/* Backwards Compatibility
* don't use it! */
2004-03-25 16:34:27 +03:00
stock get_customdir(name[],len)
2004-10-08 12:36:54 +04:00
return get_localinfo("amxx_configsdir",name,len)
/* Add a menu item to Menus Front-End plugin:
* MENU_TEXT: Text that will be shown for this item in menu
* MENU_CMD: Command that should be executed to start menu
* MENU_ACCESS: Access required for menu
* MENU_PLUGIN: The exact case-insensitive name of plugin holding the menu command
*/
stock AddMenuItem(const MENU_TEXT[], const MENU_CMD[], const MENU_ACCESS, const MENU_PLUGIN[]) {
new pluginid = is_plugin_loaded("Menus Front-End")
if (pluginid == -1) {
log_amx("Can't add menu item ^"%s^" from plugin ^"%s^" to menu set because the Menus Front-End plugin itself is not loaded!", MENU_TEXT, MENU_PLUGIN)
return // Menus Front-End doesn't exist, return.
}
2004-10-08 12:59:04 +04:00
new filename[64], b[1]
get_plugin(pluginid, filename, 63, b, 0, b, 0, b, 0, b, 0)
2004-10-08 12:36:54 +04:00
new status = callfunc_begin("AddMenu", filename)
new bool:failed = true
switch (status) {
case 1: failed = false
case 0: log_amx("Run time error!")
case -2: log_amx("Function not found!")
case -1: log_amx("Plugin not found!")
}
if (failed)
return
2004-10-08 12:53:27 +04:00
// Item text
2004-10-08 12:36:54 +04:00
callfunc_push_str(MENU_TEXT)
// Cmd
callfunc_push_str(MENU_CMD)
// Access
callfunc_push_int(MENU_ACCESS)
2004-10-08 12:53:27 +04:00
// Menu exists in this plugin
2004-10-08 12:36:54 +04:00
callfunc_push_str(MENU_PLUGIN)
callfunc_end()
}
/* Find plugin by an attribute */
stock find_plugin_byfile(pname[], bool:ignorecase=true)
{
new num_of_plugins = get_pluginsnum();
new dummy[1];
new name[64];
for (new i = 0; i < num_of_plugins; ++i)
{
get_plugin(i, name, 0, dummy, 63, dummy, 0, dummy, 0, dummy, 0);
if (ignorecase ? equali(name, pname) : equal(name, pname))
return i;
}
return -1;
}
stock find_plugin_bydesc(pdesc[], bool:ignorecase=true)
{
new num_of_plugins = get_pluginsnum();
new dummy[1];
new desc[64];
for (new i = 0; i < num_of_plugins; ++i)
{
get_plugin(i, dummy, 0, desc, 63, dummy, 0, dummy, 0, dummy, 0);
if (ignorecase ? equali(desc, pdesc) : equal(desc, pdesc))
return i;
}
return -1;
}