This code will change the display, but not the user's money. If you want to change the display AND the actual money value, you should use cs_set_user_money().
PHP Code:
//...
new msgid_Money = get_user_msgid( id, "Money" )
//...
SetMoney( id, iMoney, bool:bFlash )
{
message_begin( MSG_ONE_UNRELIABLE, msgid_Money, _, id )
write_long( iMoney )
write_byte( bFlash ) // should the number blink/flash?
message_end()
}
__________________