Author Topic: War of the roses.....just a cool video showing the game I found :)  (Read 5136 times)

0 Members and 2 Guests are viewing this topic.

Offline Oberyn

  • King
  • **********
  • Renown: 1578
  • Infamy: 538
  • cRPG Player
    • View Profile
  • Faction: Lone Frog
  • Game nicks: Oberyn
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #30 on: February 28, 2012, 07:27:02 pm »
+3
Gonna be pretty funny having warband players completely destroying any people new to the game mechanics at release.
visitors can't see pics , please register or login

Offline Christo

  • Dramaturge
  • King
  • **********
  • Renown: 1844
  • Infamy: 371
  • cRPG Player
    • View Profile
  • Faction: No faction, methinks.
  • Game nicks: Sir_Christo, Christo, Cristo.
  • IRC nick: Christo
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #31 on: February 29, 2012, 02:38:27 am »
+2
Gonna be pretty funny having warband players completely destroying any people new to the game mechanics at release.

This.  :lol:

I might even buy it, if the final stuff will look better. I'm sure it will.

Lots of people will RQ that day, when some cRPG vets try it out.  :)
visitors can't see pics , please register or login

                                                                                            Thanks to cmpxchg8b for the picture!

Offline Blade

  • Knight
  • ***
  • Renown: 49
  • Infamy: 27
  • cRPG Player
    • View Profile
  • Faction: UltimaOnline
  • Game nicks: Blade_The_Berserk
  • IRC nick: StrengthAbusersAnonymous
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #32 on: February 29, 2012, 03:11:01 am »
0
Hahahahahha that will be funny  :D
visitors can't see pics , please register or login

Offline ManOfWar

  • Count
  • *****
  • Renown: 243
  • Infamy: 36
  • cRPG Player Sir Black Pawn A Gentleman and a Scholar
  • No crutches at all!
    • View Profile
  • Faction: Remnants
  • Game nicks: Remnant_ManOfWar (Formerly Takeda)
  • IRC nick: ManOfWar
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #33 on: February 29, 2012, 03:02:19 pm »
0
wrong

Code: [Select]
if hold_time >= 1.1:
    hold_bonus = 1.2
elif hold_time >= 0.6:
    hold_bonus = (1.1 - hold_time) * 0.6 + 1.2
elif hold_time >= 0.5:
    hold_bonus = 1.5
else:
    hold_bonus = hold_time + 1.0

raw_damage = weapon_damage * (max(1.0, min(hold_bonus, 2.0)) * 0.5 + 0.5)

In reality 25% bonus damage for holding attacks between 0.5 - 0.6s

O damn, I will have to keep that in mind
Just a soldier

Offline marco1391

  • Noble
  • **
  • Renown: 18
  • Infamy: 11
  • cRPG Player
    • View Profile
  • Game nicks: Legio_Marco1691
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #34 on: February 29, 2012, 04:18:35 pm »
0
wrong

Code: [Select]
if hold_time >= 1.1:
    hold_bonus = 1.2
elif hold_time >= 0.6:
    hold_bonus = (1.1 - hold_time) * 0.6 + 1.2
elif hold_time >= 0.5:
    hold_bonus = 1.5
else:
    hold_bonus = hold_time + 1.0

raw_damage = weapon_damage * (max(1.0, min(hold_bonus, 2.0)) * 0.5 + 0.5)

In reality 25% bonus damage for holding attacks between 0.5 - 0.6s
from the formula it's 50% bonus between 0.5 to 0.6 seconds decresing to 20% and not lowering anymore from 0.6 to 1.1 sec
(1.1-0.6)*0.5+1.2=0.3+1.2=150% real damage from 0.5 to 0.6 sec, that's the sweet spot(I also can remember that being discussed in the normal warband forum)

Offline Kato

  • Count
  • *****
  • Renown: 227
  • Infamy: 37
  • cRPG Player A Gentleman and a Scholar
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #35 on: February 29, 2012, 04:52:15 pm »
0
raw_damage = weapon_damage * (clamp(hold_bonus, 1.0, 2.0) * 0.5 + 0.5)

You forgot this code line that follow main formula:  1.5*0.5+0.5 = 1.25

Offline Leesin

  • King
  • **********
  • Renown: 1009
  • Infamy: 230
  • cRPG Player A Gentleman and a Scholar
    • View Profile
  • Game nicks: Leesin
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #36 on: March 01, 2012, 03:22:26 am »
0
Fatdicks isn't a bad developer, hopefully they can pull this off.

Offline marco1391

  • Noble
  • **
  • Renown: 18
  • Infamy: 11
  • cRPG Player
    • View Profile
  • Game nicks: Legio_Marco1691
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #37 on: March 11, 2012, 04:23:17 pm »
0
raw_damage = weapon_damage * (clamp(hold_bonus, 1.0, 2.0) * 0.5 + 0.5)

You forgot this code line that follow main formula:  1.5*0.5+0.5 = 1.25
you're right it's totally my fault, I didn't see that at all

Offline Kafein

  • King
  • **********
  • Renown: 2203
  • Infamy: 808
  • cRPG Player Sir White Rook A Gentleman and a Scholar
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #38 on: March 11, 2012, 05:18:02 pm »
0
Gonna be pretty funny having warband players completely destroying any people new to the game mechanics at release.

Yep.

I think I'll buy this even if it's pretty bad, just to hear the lamentations of their women. At the moment it looks quite easy to play compared to Warband, the speed is close to cRPG.

I also expect a wave of "CHEATER !!!!111!!!!!!!1!!!!!" threads on the official forums.

Offline Kato

  • Count
  • *****
  • Renown: 227
  • Infamy: 37
  • cRPG Player A Gentleman and a Scholar
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #39 on: March 11, 2012, 05:39:53 pm »
0
dont know if its already here.

long gameplay video:
http://www.gamespot.com/events/gdc-2012/video.html?sid=6365126&mode=embedded

not bad for pre-alpha, but not impressed either.
Net code look really bad with all people wrapping around each other, combat slow paced and sluggish.
Hope it will be a lot better and still look forward, but its nothing to worry about for taleworlds and M&B2. 
« Last Edit: March 11, 2012, 07:55:59 pm by Kato »

Offline Oberyn

  • King
  • **********
  • Renown: 1578
  • Infamy: 538
  • cRPG Player
    • View Profile
  • Faction: Lone Frog
  • Game nicks: Oberyn
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #40 on: March 11, 2012, 07:37:28 pm »
+1
Not sure if it's because the people playing suck, but it looks really arcadey. Can't say I'm a fan of the Borderlands type numbers indicating damage either...

"I've never seen a game where people run away from you as much". The lucky fool obviously never played warband or its mods.
« Last Edit: March 11, 2012, 07:40:12 pm by Oberyn »
visitors can't see pics , please register or login

Offline [ptx]

  • King
  • **********
  • Renown: 1871
  • Infamy: 422
  • cRPG Player Sir White Rook A Gentleman and a Scholar
  • such OP. so bundle of sticks. wow.
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #41 on: March 11, 2012, 11:24:45 pm »
0
Wow, that is some really crap hit detection. And movement. I know it's pre-alpha and all, but still... That video made me lose a lot of interest in that game.

Offline Jacko

  • OKAM Developer
  • ***
  • Renown: 839
  • Infamy: 99
  • cRPG Player Sir White Knight
  • Mappers Guild
    • View Profile
  • Faction: Fffnanguard!
  • Game nicks: Jacko
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #42 on: March 12, 2012, 12:48:27 am »
+1
God that looks horrible.
Monkeys!

Offline Radament

  • King
  • **********
  • Renown: 1071
  • Infamy: 64
  • cRPG Player Sir Black Bishop
  • ☑Yes ☒No
    • View Profile
  • Faction: Faction
  • Game nicks: «Radament» «Miasma»
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #43 on: March 12, 2012, 01:35:04 am »
0
press e to lol , bendage , flying numbers , mmhhhh i hope they improve all the stuff. the only good thing i see is the graphic.
the rest seems age of chivalry to me.
visitors can't see pics , please register or login

Offline Christo

  • Dramaturge
  • King
  • **********
  • Renown: 1844
  • Infamy: 371
  • cRPG Player
    • View Profile
  • Faction: No faction, methinks.
  • Game nicks: Sir_Christo, Christo, Cristo.
  • IRC nick: Christo
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #44 on: March 12, 2012, 02:47:51 am »
0
Kinda disappointing, yes.

I hope they'll improve it until the release, though, I still see potential there.
visitors can't see pics , please register or login

                                                                                            Thanks to cmpxchg8b for the picture!