![]() |
|
||||||||
| |||||||||
(#1)
|
|
UO Gamers: Demise Administrator
Posts: 13,511
Join Date: Oct 2002
Location: Swamp
|
On OSI: When in combat (PvP or PvM) there is considerable amounts of blood being splattered all about on pretty much every hit.
On Demise: It looks like an even more Care Bears version of UO than when Trammel first came about (What is it? One? Two splats of blood total per hit?) Creator of UOGamers: Demise(Retired) The RunUO.com Forum Moderator Team Quality Control Czar |
|
|
|
(#2)
|
|
Forum Expert
Posts: 4,708
Join Date: Aug 2008
Location: Italia, near Britannia
|
BaseWeapon.cs handles it:
Code:
public virtual void AddBlood( Mobile attacker, Mobile defender, int damage )
{
if ( damage > 0 )
{
new Blood().MoveToWorld( defender.Location, defender.Map );
int extraBlood = (Core.SE ? Utility.RandomMinMax( 3, 4 ) : Utility.RandomMinMax( 0, 1 ) );
for( int i = 0; i < extraBlood; i++ )
{
new Blood().MoveToWorld( new Point3D(
defender.X + Utility.RandomMinMax( -1, 1 ),
defender.Y + Utility.RandomMinMax( -1, 1 ),
defender.Z ), defender.Map );
}
}
}
|
|
|
|
(#3)
|
|
UO Gamers: Demise Administrator
Posts: 13,511
Join Date: Oct 2002
Location: Swamp
|
Even back before AOS it was more than the one or two splats we've had forever.
Not sure if it's been increased on OSI again, though... Creator of UOGamers: Demise(Retired) The RunUO.com Forum Moderator Team Quality Control Czar |
|
|
|
(#4)
|
|
Forum Expert
Posts: 4,708
Join Date: Aug 2008
Location: Italia, near Britannia
|
Quote:
I'm trying to figure ItemIDs... edit: in OSI, blood is random between: 0x122A-B-C-D-E-F and 0x1645 (that is what currently drops). edit2: acknowledged psz ![]() |
|
|
|
|
(#5)
|
|
UO Gamers: Demise Administrator
Posts: 13,511
Join Date: Oct 2002
Location: Swamp
|
I'd say since LBR or AOS the blood has been... Messier on OSI :->
Creator of UOGamers: Demise(Retired) The RunUO.com Forum Moderator Team Quality Control Czar |
|
|
|
(#6)
|
|
Forum Expert
Posts: 4,708
Join Date: Aug 2008
Location: Italia, near Britannia
|
Here's the patch.
More GORE!! Because UO is NOT a game for crying children ![]() Now you can feel yourself better in killing newbs in Fel. |
|
|
|
(#7)
|
|
Forum Novice
Posts: 310
Join Date: Sep 2009
|
as long as the blood is not censored green im happy
![]() |
|
|
|
(#8)
|
|
Forum Expert
Posts: 1,802
Join Date: Jun 2006
|
Looks nice! I can't wait dying covered in blood on Demise! Patch approved.
![]() G. |
|
|
|
(#9)
|
(#10)
|
|
Forum Expert
Posts: 1,802
Join Date: Jun 2006
|
Aaaah, sorry, this was a testing report, actually...
G. |
|
|
|
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|