Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Strategy Game Collaboration

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-07-19 0:46

Experimental RTS/Space sim Collaborative Coding Project.
The goal is to design a game with structure/settings/balance of Starcraft and scale of Eve Online(i.e. huge space battles, space empires,etc).
Though this wouldn't stop anyone from contributing code/feedback/criticism, i'll be coordinating the project.
All code/ideas should be posted in this and subsequent threads which i'll start as needed.
step #1: We will collaboratively create a name for our project.
Each suggestion must explain why this name fits the project and why its better then any other generic name.

Name: Anonymous 2009-07-24 23:46


import random

#This is as far as development will ever get
print'FV RTS GAME\nV 0.1\n'
print'Okay, you have 3 military units, what do you do?'

done = 0
while not done:
    c = raw_input('[A]ttack or [M]ove\n?').lower()
    if c=='a':
        print'PEW PEW PEW'
    elif c=='m':
        print'you travel many days and nights'
        if random.randrange(5)==4:
            print'AMBUSH OH SHIT'
            c = raw_input('[R]un or [G]un!?!?\n?')
            if c=='r':
                print'you didn\'t get away fast enough'
            elif c=='g':
                print'you don\'t have a gun'
            else:
                print'you didn\'t act fast enough'
            print'you fucking lose'
            done = 1

Newer Posts