UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

Hiryu Colors

HometheClown

Wanderer
I found an olddddddd post about hiryu colors. There was a little discussion about how the colors are different from OSI's hiryus. The poster mentions something about the RUNuo code and talks about the green hiryu. None of his picture links work so I wasn't sure which Hiryu and Lesser Hiryu colors actually spawn on Demise. For example, do the rare pink and neon green hiryus spawn here?

http://www.uogamers.com/community/index.php?threads/394997/
 
Last edited:

HometheClown

Wanderer
http://stratics.com/threads/2011-pet-colour-charts-cu-sidhe-hiryu-battle-chickens.233027/

Is another link, but doesn't confirm whether or not demise is OSI accurate. I know @koka has the pink hiryus.
Thx for the reply. Unfortunately many of the links don't work for me. I guess I want to know if anyone has seen a green (bright green) Hiryu and not lesser hiryu on Demise. I have seen a pink one which is the other rare color, but I havent' seen the green one.
 

MMMartin

Squire
0.09 spwan... and shared spawn with ninja, oni, lesser and hiryu... mean 0.09/4 chance for spwan it... 0.018 chance :) one with 6-7k kill will spwan green or pink [purple] hiryu :)
 

HometheClown

Wanderer
Just bumping this. I know people don't care about Hiryu's but I am hoping a developer might chime and let me know which green is available. I've seen a pale green one but not the poison one. Would be nice to see a picture of one on this server or a developer let me know if they are spawnable.
Also, silver, some colors are super rare to get so they are worth something....
 

spok

Sorceror
Hi HometheClown,

According to RunUO Code (we can find/download them on: http://runuo.com). Inside the Folder Name: Scripts\Mobiles\Animals\Mounts\Hiryu.cs

private static int GetHue()
{
int rand = Utility.Random( 1075 );

/*
1000 1075 No Hue Color 93.02% 0x0
*
10 1075 Ice Green 0.93% 0x847F
10 1075 Light Blue 0.93% 0x848D
10 1075 Strong Cyan 0.93% 0x8495
10 1075 Agapite 0.93% 0x8899
10 1075 Gold 0.93% 0x8032
*
8 1075 Blue and Yellow 0.74% 0x8487
*
5 1075 Ice Blue 0.47% 0x8482
*
3 1075 Cyan 0.28% 0x8123
3 1075 Light Green 0.28% 0x8295
*
2 1075 Strong Yellow 0.19% 0x8037
2 1075 Green 0.19% 0x8030 //this one is an approximation
*
1 1075 Strong Purple 0.09% 0x8490
1 1075 Strong Green 0.09% 0x855C
* */

if( rand <= 0 )
return 0x855C;
else if( rand <= 1 )
return 0x8490;
else if( rand <= 3 )
return 0x8030;
else if( rand <= 5 )
return 0x8037;
else if( rand <= 8 )
return 0x8295;
else if( rand <= 11 )
return 0x8123;
else if( rand <= 16 )
return 0x8482;
else if( rand <= 24 )
return 0x8487;
else if( rand <= 34 )
return 0x8032;
else if( rand <= 44 )
return 0x8899;
else if( rand <= 54 )
return 0x8495;
else if( rand <= 64 )
return 0x848D;
else if( rand <= 74 )
return 0x847F;


return 0;
}

If the code that UOGamers: Demise use is the same, we have 13 different colored Hiryu and the default color, so we have 1 more color then OSI, the #1075 - Green.

Have Fun in UOGamers: Demise!
Spok
 

Wreakage-

Sorceror
Then once I got colored cus, I killed the hiryus & released them. The colors are only worth 500-1kk max. No matter what color
 

MMMartin

Squire
i alone tame silver and sold it for 500k [maybe] :), and about green... yea it exist i see it 2-3x

well for green/pink they are rare so noone will sold them at all, if are you wanna some color so only way is killing and killing them :)
and tame youself
 

Eos

Demise Administrator
Staff member
Hi HometheClown,

According to RunUO Code (we can find/download them on: http://runuo.com). Inside the Folder Name: Scripts\Mobiles\Animals\Mounts\Hiryu.cs

private static int GetHue()
{
int rand = Utility.Random( 1075 );

/*
1000 1075 No Hue Color 93.02% 0x0
*
10 1075 Ice Green 0.93% 0x847F
10 1075 Light Blue 0.93% 0x848D
10 1075 Strong Cyan 0.93% 0x8495
10 1075 Agapite 0.93% 0x8899
10 1075 Gold 0.93% 0x8032
*
8 1075 Blue and Yellow 0.74% 0x8487
*
5 1075 Ice Blue 0.47% 0x8482
*
3 1075 Cyan 0.28% 0x8123
3 1075 Light Green 0.28% 0x8295
*
2 1075 Strong Yellow 0.19% 0x8037
2 1075 Green 0.19% 0x8030 //this one is an approximation
*
1 1075 Strong Purple 0.09% 0x8490
1 1075 Strong Green 0.09% 0x855C
* */

if( rand <= 0 )
return 0x855C;
else if( rand <= 1 )
return 0x8490;
else if( rand <= 3 )
return 0x8030;
else if( rand <= 5 )
return 0x8037;
else if( rand <= 8 )
return 0x8295;
else if( rand <= 11 )
return 0x8123;
else if( rand <= 16 )
return 0x8482;
else if( rand <= 24 )
return 0x8487;
else if( rand <= 34 )
return 0x8032;
else if( rand <= 44 )
return 0x8899;
else if( rand <= 54 )
return 0x8495;
else if( rand <= 64 )
return 0x848D;
else if( rand <= 74 )
return 0x847F;


return 0;
}

If the code that UOGamers: Demise use is the same, we have 13 different colored Hiryu and the default color, so we have 1 more color then OSI, the #1075 - Green.

Have Fun in UOGamers: Demise!
Spok
I can confirm that this is what Demise uses. :)
 
Top