{
// initialize the text
  script_initlines();
  keyboard_string = ''; 
// find out who is around
  n = mplay_player_find();
  if (n <= 1)
  {
    script_addline('No other people are around in this chatroom.',c_red);
  }
  else
  {
    str := 'Currently present: ';
    for (i=1; i<n; i+=1) str += mplay_player_name(i) + '  ';
    script_addline(str,c_red);
  } 
}