#include <amxmodx>
#include <reapi>
new hudsync;
public plugin_init() {
hudsync = CreateHudSyncObj();
}
public client_putinserver(id) {
set_task(1.0, "@ShowMoney", id, .flags = "b");
}
public client_disconnected(id) {
remove_task(id);
}
@ShowMoney(const id) {
set_hudmessage(255, 255, 255, 0.01, 0.18, 0, _, 1.2);
ShowSyncHudMsg(id, hudsync, "Your Money: $%i", get_member(id, m_iAccount));
}
Без сомнений.I hope it helps you.