is the new age of reselling the same idea with a different skin. look at ubisoft, movies, even culture itself lol
You mean Pixels?
Is that the actual name lol? I just call it the shitty video game movie
Why come up with an original idea when you can milk an existing one and drive it into the ground.
Ah, no. I thought you meant the one with Adam Sandler with the giant Pacman.
I think you mean “Ready Player One”. Was kinda overhyped geek-circlejerk since Wil Wheaton read it for the audiobook.
Hey look. evil guy doing evil things because destroying the world for the lolz
Also yes
Pitch that idea to a major production company and you got a movie deal
i wont get one movie deal. Ill get three
My mistake. I forgot they can count higher then valve.
Real trilogy based on actually 3 parts of source material or The Hobbit “trilogy”?
Or like The Golden Compass “trilogy” that’ll never see part 2 and 3?
Triology where i have the first movie end on a really big cliffhanger. the second movie is a prequel to the first that leaves more questions than answers. The third movie will be hyped as the greatest movie of all time and will tie off all loose ends but the most that happens is that some troll creates a fake script that pisses everyone off and the movie dies off right there
I’m off to bed night y’all
well then
Got the perfect guy for that job:
g’night, billy-bob-jamal.
Woot. Got some OOP learned
Is a super basic random unit generator i made. Is alot of ways to improve it but is a really nice PoC
from random import randint
class newUnit:
health = 20
stamina = 10
unitCount = 0
def __init__(self, ID):
self.ID = ID
newUnit.unitCount += 1
unitList = []
counter = 0
unitSize = 20
while counter <= unitSize:
randNum = randint(0,10000)
unitList.append(newUnit(randNum))
counter += 1
counter = 0
while counter <= unitSize:
print('{} {} {}'.format(unitList[counter].health,unitList[counter].stamina,unitList[counter].ID))
counter += 1
counter = 0
print('Done')
Nice looks pretty good for your first attempt. OOP can be great but I kinda have a love/hate relationship with it XD
thats not even a first attempt. i just threw together the simplest thing i could as a test to see if i got the OOP part done
yep even for something thrown together still looks pretty good from an OOP perspective. I honestly need to brush up on my OOP again, has been years since I’ve done it.