Belle Delphine Targaryen!
47 VS. Ajeossi VS. James Bond VS. Jason Bourne VS. John Wick
 
 
'Mother is God in the eyes of a child.' - Rose Da Silva
'We learn from history that we do not learn from history.'
- Georg Wilhelm Friedrich Hegel

January 3, 2022: Discharged from wound clinic.
February 14, 2021 - February 17, 2021: Three days without power.
Good to be back after years of being with a Celeron laptop! 11252017
Currently In-Game
Cookie Clicker
Featured Artwork Showcase
Peekaboo!
2
Screenshot Showcase
Seven days ago for Movie Night, they had all agreed to watch The Ring 01282022
8 2 1
Artwork Showcase
Ishanti VS Ashanti
9 3
Screenshot Showcase
Metal Gear Solid 5: The Human Centipede 05182023
3 2 1
Featured Artwork Showcase
Peekaboo
33 4 1
Artwork Showcase
Got my 365 Day Badge! You jelly?
1 1
Favorite Game
Review Showcase
EDIT October 13, 2020:
Someone alleged in the forum he got a response from one of the employees, an Elisabeth, who said their code is set to 'expire' by 2020 which will result in shops and weekly missions ultimately breaking. TV series spoiler...........Alas, the TV series will end in 2023 as it was announced season 11 will be the finale with 24 episodes. It was also announced Daryl and Carol will have a spinoff series starting in 2023! We may also get a Negan spinoff!
R.I.P. Lee Everett (May 11, 1975 - November 20, 2012) Protector of Clementine (and would have saved
Glenn Rhee!
) and Beloved History Professor at the University of Georgia. Go Bulldogs!

EDIT December 9, 2019:
I can't find a single player for the fifth main quest--hosting does nothing either! I love the game, but the player base has significantly deteriorated.

Original Review

I love The Walking Dead! I think Tara's gorgeous! Rosita's beautiful in her own way!

  • This game has gotten a plethora of hate. I didn't let that decide my decision to buy it. Improvements can be made to the AI and some QOL to the mechanics; the horde meter should be altered to gradually decline when players eliminate the infestation of walkers. I have done quests solo pretty well, but the horde being alerted as a result of the human AI firing their guns with infinite ammo is poor design. Why punish me when I've been silently eliminating them with my suppressed rifle? They just shoot aimlessly while I'm out of sight increasing the meter and ultimately the walkers know my exact location. This could be forgiven only had a system of the meter decreasing been implemented.

  • Expect players to run/gun. I was in a PUG and while the three of us took our time scavenging materials, opening locked cases, and sneaking room to room/floor to floor, the other player ventured off to a location full of The Family (human NPCs) and roleplayed as Frank Castle! Of course, he asked us to revive him which one was riotously selfless enough to run out of the multistory building we were all in and do just that.

  • There's no host migration. Everything's going well, but the host, for whatever reason has to exit the game, the quest abruptly ends.

  • The game's always-online... why not implement offline mode for solo play?

  • Reports of players' save files disappearing. The current fix is to manually backup your files... in an always-online game that's connected to Overkill's servers.

  • Why aren't all cars climbable? I see a Prius nearby the walkers which I can't climb, but then I can climb a Fiat which is a good distance away from the walkers. This also applies to military truck beds, crates, and dumpsters.

  • I have leveled up Maya to level 28. I enjoy healing and leaving med bags. Just don't pîss me off or no healing for you!
Attempt to code an RPG back in June 2018 using Python
import random, time
def classTypes():
global classRoles, classRolesNames

classRoles = { 'Marauder':210, 'Barbarian':140, 'Monk':125,
'Assassin':115, 'Wizard':105, 'Paladin':90 }
classRolesNames = list(classRoles)
def rollDice():
global className, dice

answer = input('Roll dice (Y or y)? ')
while answer not in []:
answer = input('Roll dice (Y or y)? ')
dice = random.randrange( 1, 2 ) #len(classRoles) + 1
if dice == 1:
className = classRolesNames[0]
print('You are a', className, 'with', classRoles.get(className), 'HP.' )
elif dice == 2:
className = classRolesNames[1]
print('You are a', className, 'with', classRoles.get(className), 'HP.' )
elif dice == 3:
className = classRolesNames[2]
print('You are an', className, 'with', classRoles.get(className), 'HP.' )
elif dice == 4:
className = classRolesNames[3]
print('You are a', className, 'with', classRoles.get(className), 'HP.' )
elif dice == 5:
className = classRolesNames[4]
print('You are a', className, 'with', classRoles.get(className), 'HP.' )
elif dice == 6:
className = classRolesNames[5]
print('You are a', className, 'with', classRoles.get(className), 'HP.' )
def ch1():
pause = time.sleep(3) # pause
print('The sun\'s rays pierce through the golden wheat fields and rotten shingles of the occupied barns that are surprisingly still dwelt in.')
pause = time.sleep(3) # pause
print('The ' + className.lower() + ' walks at a steady pace the stoned trail leading to the busy courtyard of merchants, bankers, and prostitutes.')
pause = time.sleep(3) # pause
print('A bulky drunkard carelessly bumps into the ' + className.lower() + ' with a force equivalent to a battering ram.')
pause = time.sleep(3) # pause
print('Without a slight chance to inhale the smell of boars\' fat and the foreign spices on display to politely excuse yourself, you\'re suddenly greeted with a blade.')
pause = time.sleep(1) # pause

# enemy stats

drunkardHp = 50
drunkardMinDmg = 0
drunkardMaxDmg = 11

theHoundHp = 57
theHoundMinDmg = 20
theHoundMaxDmg = 36

# items already used

cokeHp = []

def attackDrunkard(drunkardHp, drunkardMinDmg, drunkardMaxDmg):
heroHp = classRoles[] ]
drunkardHp = drunkardHp
while True:
drunkardAttack = random.randrange(drunkardMinDmg, drunkardMaxDmg)
heroHp -= drunkardAttack

pause = time.sleep(2) # pause

print('The drunkard deals ' + str(drunkardAttack) + ' dmg. >>> ' + className + ': ' + str(heroHp) + ' HP')
if heroHp <= 0:
print(className + ' is slain!')
break

pause = time.sleep(2) # pause

if className == classRolesNames[0]:
print('''1. Strike (20 - 30 dmg)
2. Cleave (10 - 20 AOE dmg)
3. Basic Attack (9 dmg)
4. Drink Coke (57% HP healing)''')
elif className == classRolesNames[1]:
print('''1. Strike & Pierce (30 - 40 dmg)
2. Headbutt (15 - 20 dmg)
3. Drink Coke (57% HP healing)''')
elif className == classRolesNames[2]:
print('''1. Draago Punch (15 - 25 dmg)
2. Whirlwind Kick (10 - 15 dmg)
3. Drink Coke (57% HP healing)''')
elif className == classRolesNames[3]:
print('''1. Dual Stab (30 dmg)
2. Double Mint Arrow Attack (15 - 18 dmg)
3. Drink Coke (57% HP healing)''')
elif className == classRolesNames[4]:
print('''1. Ragnar Missles (40 dmg)
2. Fire Blast (25 dmg)
3. Drink Coke (57% HP healing)''')
elif className == classRolesNames[5]:
print('''1. Odin\'s Prayer (50 dmg)
2. Vicious Penetration (10 - 18 dmg)
3. Drink Coke (57% HP healing)''')

answer = input('Action: ')
while answer not in ['1', '2', '3', '4']:
answer = input('Action: ')
if answer == '4' and answer not in cokeHp:
cokeHp.append(answer)
heroHp = (heroHp * .57) + heroHp
classRoles[className] = heroHp
continue
while answer == '4' and answer in cokeHp:
while answer not in ['1', '2', '3']:
answer = input('Already healed! Action: ')

if answer == '1' and className == classRolesNames[0]:
heroMinDmg = 20
heroMaxDmg = 31
elif answer == '2' and className == classRolesNames[0]:
heroMinDmg = 10
heroMaxDmg = 21
elif answer == '3' and className == classRolesNames[0]:
heroMinDmg = 9
heroMaxDmg = 10
elif answer == '1' and className == classRolesNames[1]:
heroMinDmg = 30
heroMaxDmg = 41
elif answer == '2' and className == classRolesNames[1]:
heroMinDmg = 15
heroMaxDmg = 21
elif answer == '1' and className == classRolesNames[2]:
heroMinDmg = 15
heroMaxDmg = 26
elif answer == '2' and className == classRolesNames[2]:
heroMinDmg = 10
heroMaxDmg = 16
elif answer == '1' and className == classRolesNames[3]:
heroMinDmg = 30
heroMaxDmg = 31
elif answer == '2' and className == classRolesNames[3]:
heroMinDmg = 15
heroMaxDmg = 19
elif answer == '1' and className == classRolesNames[4]:
heroMinDmg = 40
heroMaxDmg = 41
Recent Activity
9,046 hrs on record
Currently In-Game
197 hrs on record
last played on 23 Apr
70 hrs on record
last played on 22 Apr
Aesmatv 31 Dec, 2018 @ 7:29pm 
lmao :servbotangry:
Kisamefishman 31 Dec, 2018 @ 7:00pm 
Yes Thank you and a happy New Years.
Aesmatv 31 Dec, 2018 @ 5:39pm 
happy happy new year so where did u hear about eso servers i cant find anything about it
Kisamefishman 25 Dec, 2018 @ 3:10pm 
To me cs go skins are a waste of money.
smadrekasse 25 Dec, 2018 @ 11:51am 
I know nothing about anime even though I'm Asian. One thing I do know is the girls are hot! They're bloody scrumptious! Exotic delicacies worth devouring. A drop shall not be wasted as such a grievous act would be an unforgivable crime against nature.

Alright what the ♥♥♥♥ mate
Jack gag 25 Dec, 2018 @ 5:13am 
Thank you very much for the amazing gift! I wasn't expecting that :D Merry Christmas :steamhappy: