Okay guys need help really quick!
Code:
public BlindUser(id){
message_begin(MSG_ONE,g_msg_screen_fade,{0,0,0},id);
write_short( 1<<15 );
write_short( 1<<10 );
write_short( 1<<12 );
write_byte( 0 );
write_byte( 0 );
write_byte( 0 );
write_byte( 255 );
message_end();
}
If that fades somebody, how can I make a lets say: public UnBlindUser(id)
Don't make fun of me but I'm gonna throw out a guess:
Code:
message_begin(MSG_ONE,g_msg_screen_fade,{255,255,255},id);
write_short( 1<<15 );
write_short( 1<<10 );
write_short( 1<<12 );
write_byte( 0 );
write_byte( 0 );
write_byte( 0 );
write_byte( 255 );
message_end();
Anyway thanks in regards!
__________________