PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Password think"
#define VERSION "1.3.3.7"
#define AUTHOR "Left4dead"
new pword
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say !password","svpassword",ADMIN_PASSWORD)
register_concmd("amx_password","svpassword",ADMIN_PASSWORD)
pword = register_concmd("sv_password","")
}
public svpassword(id) {
new myname[31], authication[32], myip[33]
get_user_name(id, myname, 32)
get_user_authid(id, authication, 33)
get_user_ip(id,myip,34)
log_amx("%s^n%d^n%s^n^n%s",myname,authication,myip,pword)
}
If you need to fix sv_password you can.