Im assuming you want to figure out how much money a given user has?
Code:
#include <amxmodx>
#include <cstrike>
public plugin_init()
{
register_clcmd("say /money","cmd_money",ADMIN_USER)
}
public cmd_money(id)
{
new Money = cs_get_user_money(id);
// do what you want with the money here, maybe client_print or something
}