With the code below it shows how to hide the Timer OR the Money.
PHP Code:
// Hides the timer
message_begin(MSG_ONE, get_user_msgid("HideWeapon"), _, id);
write_byte((1<<4));
message_end();
// Hides the money
message_begin(MSG_ONE, get_user_msgid("HideWeapon"), _, id);
write_byte((1<<5));
message_end();
Is there a way to hide the Timer AND Money at the same time?