Guest User

Untitled

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. if(!format){ //format 0 = default
  2. snprintf( output, sizeof(output), msg_txt(386), sd->status.name, message );
  3. intif_broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 );
  4. }
  5. else if(format==1){ //format 1 website
  6. snprintf( output, sizeof(output), "%s : %s", sd->status.name, message );
  7. intif_broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 );
  8. }
Add Comment
Please, Sign In to add comment