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

0 Members and 3 Guests are viewing this topic.

Offline John

  • Knight
  • ***
  • Renown: 41
  • Infamy: 8
  • cRPG Player
    • View Profile
  • Faction: None
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #15 on: February 27, 2012, 06:54:02 am »
0
If I'd decided whether or not to play Mount and Blade based on the quality of its combat animations during beta...

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 #16 on: February 27, 2012, 08:17:00 am »
0
The old 10 page thread wasn't enough? http://forum.c-rpg.net/index.php/topic,13876.0.html
Monkeys!

Offline HarunYahya

  • Marshall
  • ********
  • Renown: 965
  • Infamy: 309
  • cRPG Player
  • Proud Abdulla wielder
    • View Profile
  • Faction: BashiBazouks
  • Game nicks: HarunYahya,HarunShootya,Inan
  • IRC nick: HarunYahya
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #17 on: February 27, 2012, 10:02:18 am »
0
That looks like shit.
This i can agree without hesitation.

Offline Stabby_Dave

  • Count
  • *****
  • Renown: 197
  • Infamy: 34
  • cRPG Player A Gentleman and a Scholar
    • View Profile
  • Game nicks: Stabby_Dave, Squelch, Dave_The_Longbowman, Faggy_Dave
  • IRC nick: Stabby
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #18 on: February 27, 2012, 02:19:25 pm »
0
If I'd decided whether or not to play Mount and Blade based on the quality of its combat animations during beta...

Offline Herkkutatti

  • Permanently Banned
  • **
  • Renown: 292
  • Infamy: 149
  • cRPG Player
    • View Profile
/l
(゚、 。 7
l、 ~ヽ
じしf_, )ノ Nerf archery ,please!

Offline Apsod

  • Duke
  • *******
  • Renown: 698
  • Infamy: 98
  • cRPG Player Sir Black Knight A Gentleman and a Scholar
  • Donate a few denari to the farmers of Calradia!
    • View Profile
  • Game nicks: Apsod
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #20 on: February 28, 2012, 03:50:40 pm »
0
I thought "Hey, this might be fun!", but then they said that you can hold the attack to do more damage. That just fucks up MP combat in my opinion.

Offline Leshma

  • Kickstarter Addict
  • King
  • **********
  • Renown: 2529
  • Infamy: 1387
  • cRPG Player Sir White Rook A Gentleman and a Scholar
  • VOTE 2024
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #21 on: February 28, 2012, 03:52:54 pm »
0
And that's different from Warband, how?

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 #22 on: February 28, 2012, 03:54:34 pm »
0
Last time I check holding your attack in warband does not increase the damage, it is just a way to get a hit
Just a soldier

Offline Apsod

  • Duke
  • *******
  • Renown: 698
  • Infamy: 98
  • cRPG Player Sir Black Knight A Gentleman and a Scholar
  • Donate a few denari to the farmers of Calradia!
    • View Profile
  • Game nicks: Apsod
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #23 on: February 28, 2012, 04:21:00 pm »
0
And that's different from Warband, how?
Yeah what ManOfWar said. Holding attacks in warband makes no difference from not holding them.

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 #24 on: February 28, 2012, 04:29:09 pm »
0
Actually, it does increase the damage, at least slightly. There is a sweetspot of holding time for maximum damage even.

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 #25 on: February 28, 2012, 04:39:51 pm »
0
Yeah what ManOfWar said. Holding attacks in warband makes no difference from not holding them.

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

Offline Thovex

  • Marshall
  • ********
  • Renown: 851
  • Infamy: 210
  • cRPG Player Sir Black Knight A Gentleman and a Scholar
    • View Profile
  • Faction: Vanguard
  • Game nicks: Thovex
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #26 on: February 28, 2012, 04:44:30 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

I always delay like half a second by standard, awesome.
visitors can't see pics , please register or login

Offline Apsod

  • Duke
  • *******
  • Renown: 698
  • Infamy: 98
  • cRPG Player Sir Black Knight A Gentleman and a Scholar
  • Donate a few denari to the farmers of Calradia!
    • View Profile
  • Game nicks: Apsod
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #27 on: February 28, 2012, 05:07: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
Whoa! I can`t believe I never found out about this. I guess I was wrong.

Anyways, the holding of attacks  in War of the roses seems to make much more difference compared to what it does in Warband.

Offline Vexus

  • Count
  • *****
  • Renown: 198
  • Infamy: 41
  • cRPG Player
    • View Profile
  • Game nicks: Deus_Mortis
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #28 on: February 28, 2012, 05:21:40 pm »
0
Better so the combat won't be all about who hits first only.

Offline Anal Bleeding

  • Permanently Banned
  • **
  • Renown: 105
  • Infamy: 132
  • cRPG Player
    • View Profile
Re: War of the roses.....just a cool video showing the game I found :)
« Reply #29 on: February 28, 2012, 06:47:45 pm »
0
this looks better than crpg.