It smells like n00bs

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

hyrulian

Rainbow Brite
May 20, 2001
9,548
0
0
42
Chula Vista, CA
hyru.ath.cx
I've found that many people don't get their "welcoming" unless they make some sort of "grand entrance" to the forums. So, I've written a bit of C++ code to welcome everyone who hasn't been welcomed yet.

Code:
#include <iostream>
#include "member.h"
using namespace std;

void welcome(Member members[], unsigned long maxMember)
{
   for (unsigned long i = 0; i <= maxMember; i++)
   {
      if (members[i].wasWelcomed == FALSE)
      {
         members[i].wasWelcomed == TRUE;
         cout << "Welcome to BuF, " << members[i].name << "!" << endl;
         cout << "Here are your truffles!" << endl;
         ZenPirate.giveTruffles(members[i]);
      }
   }
   return;
}