TEAM A: includes members whose BC username start with
A C E G I K M O Q S U V W

TEAM B: includes members whose BC username start with
B D F H J L N P R T X Y Z

SCORE Board

Team A: 4
Team B: 0
Team A leading the way :-)


Rules:

* Team A members has to Add(+) 2 from the previous post

* Team B members has to Subtract(-) 2 from the previous post

* If it reach 1,000. Team A is the Winner

* If it reach 0. Team B is the Winner

* 500 is the Starting Number of the Game

* A Single person should not post consecutively

* Names starting with numbers can join Team A and symbols can join team B

So let's start... with 500

Shanti C commented: nice game.... +2
jingda commented: Awesome game +0
e-papa commented: Good game +0

Dani AI

Generated

Friendly clarifications to keep the game smooth and fair:

  • Team assignment is based on the first visible character of your display name, case-insensitive. If it starts with a digit, you are Team A; if it starts with a symbol (punctuation), you are Team B. For letters, the split is fixed (A C E G I K M O Q S U V W = Team A; B D F H J L N P R T X Y Z = Team B).
  • Post a single bare integer so accidental numbers in text do not confuse tallying.
  • If two posts cross, count the earlier timestamp and ignore the later one that would break the +2/-2 sequence.

Quick helper you can run locally to validate a move before posting:

TEAM_A = set("ACEGIKMOQSUVW")
TEAM_B = set("BDFHJLNPRTXYZ")

def team_for(name):
    ch = name.strip()[:1].upper()
    if not ch:
        return None
    if ch.isdigit():
        return "A"
    if ch.isalpha():
        return "A" if ch in TEAM_A else "B"
    return "B"  # symbols

def valid_move(prev, user, proposed):
    t = team_for(user)
    if t == "A":
        ok = proposed == prev + 2
    elif t == "B":
        ok = proposed == prev - 2
    else:
        return False
    return ok and 0 <= proposed <= 1000

Strategy tip: coordinated alternation matters. As seen when multiple Team A players rotated in the 500s, taking turns builds momentum while honoring the no-consecutive-post rule. If the flow feels one-sided, ping teammates to jump in and balance the pace.

Recommended Answers

All 15,008 Replies

498

500

498

496

494

492

494

492

490

488

486

488

486

484

482

Way to go Team B!

480

478

480

i think i am single from group A....
what ever, i will try....

478

476

474

472

470

468

466

468

466

This has become a one-sided game.

468

470

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.