help me add admin flag to this plugin
hi guys i seem to can not figure out how to add admin flag to this plugin tagprotect.amxx , i want to add a flag access , like if admin have the access level b, i dont want everyone with admin have the tags, it will force them to tag. here is the sma files if u can help me.
#include <amxmodx> #include <amxmisc> public plugin_init() { register_plugin("Admin Tag Enforcement/Protection", "1", "atambo") register_cvar("amx_taginfront", "1") register_cvar("amx_tagprotect", "1") register_cvar("amx_clantag", "none") } public client_putinserver(id) set_task(1.5,"admin_entered",id) public admin_entered(id) { new name[32] get_user_name(id, name, 31) return force_tag(id, name) } force_tag(id, name[]) { new clantag[24] get_cvar_string("amx_clantag",clantag,23) if(get_cvar_num("amx_tagprotect") == 0) return PLUGIN_CONTINUE if(get_cvar_num("amx_taginfront") == 1) { if(is_user_admin(id) && (containi(name, clantag)<0) && (!access(id, ADMIN_IMMUNITY))) { copy(name,23,name) client_cmd(id,"name ^"%s%s^"",clantag,name) } if((!is_user_admin(id)) && (containi(name, clantag)>=0)) { deletei(name, clantag) trim(name) if(strlen(name) == 0) copy(name, 7, "Player") client_cmd(id, "name ^"%s^"", name) } return PLUGIN_CONTINUE } else { if(is_user_admin(id) && (containi(name, clantag)<0) && (!access(id, ADMIN_IMMUNITY))) { copy(name,23,name) client_cmd(id,"name ^"%s%s^"",name,clantag) } if((!is_user_admin(id)) && (containi(name, clantag)>=0)) { deletei(name, clantag) trim(name) if(strlen(name) == 0) copy(name, 7, "Player") client_cmd(id, "name ^"%s^"", name) } return PLUGIN_CONTINUE } return PLUGIN_CONTINUE } public client_infochanged(id) { new name[32] get_user_info(id, "name", name, 31) return force_tag(id, name) } deletei(text[], const what[]) { new pos new len new i pos = containi(text, what) while (pos>=0) { len = strlen(what) i = 0 while (text[pos+len+i]!=0) { text[pos+i] = text[pos+len+i] i++ } text[pos+i] = 0 pos = containi(text, what) } } |
Re: help me add admin flag to this plugin
try to edit this: http://forums.alliedmods.net/showpos...90&postcount=4 :)
|
Re: help me add admin flag to this plugin
nope did not help. im trying to add a flag acess soo admin with letter B in access can only be force to tag.
|
Re: help me add admin flag to this plugin
PHP Code:
|
Re: help me add admin flag to this plugin
where do i add the acess B. or c, for other admins. the problem is that anyone have admin will force tag. i just want a certain letter of access like B
|
Re: help me add admin flag to this plugin
PHP Code:
For the list of admin flag constants, look here: http://www.amxmodx.org/funcwiki.php?...=1#const_admin |
Re: help me add admin flag to this plugin
hey, exolent. thanks for the scripting. but it have a couple problem, like it only change the tag when u connect only, but once ur in game u change the nick in game it does not alot tag it back. can u set it where in game if u change the name to any name it will auto have the tag in front of the name again.
|
Re: help me add admin flag to this plugin
Quote:
|
Re: help me add admin flag to this plugin
what thread fysik i didnt see it. can u post it here.
|
Re: help me add admin flag to this plugin
i tried it fys it didnt work
|
| All times are GMT -4. The time now is 19:45. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.