xG00BERx

xG00BERx submitted a new resource:

GM Ethereal - Added Tiger - GM Ethereal now has the Newly added Tiger mount!

I added the latest Ethereal from OSI to the GM - Ethereal Menu!

I will shortly be adding it to all Ethereals like for players and such!

You will notice that the Ethereal Statue right now is of a Cat that is because I do not have the ItemID for the Tiger yet once I have it it will be uploaded to the fix :)

-Rawr - xG00BERx

Read more about this resource...
 
I am not 100% Sure I know it is one of the latest Vet Rewards! It is not even up on UOGuide or anything yet so I know it is pretty recent!
 
It should be, I have had Tigers and Bouras coded out for awhile with no issues....
This is how I have mine set up

This is what it should look like in a normal EtherealMount format for players:

public EtherealTiger()
: base(0x9844, 16071)
{
Name = "Ethereal Tiger";
ItemID = 0x9844;
MountedID = 16071;
RegularID = 0x9844;
LootType = LootType.Blessed;
}

or in the case of adding it to GM Ethereal Mount:

public struct EtherealInfo {
public int RegularID;
public int MountedID;
public EtherealInfo(int id, int mid) { RegularID=id; MountedID=mid; }
}

private static EtherealInfo[] EthyItemTypes = new EtherealInfo[] {
new EtherealInfo(0x20DD, 0x3EAA), //Horse
new EtherealInfo(0x20F6, 0x3EAB), //Llama
new EtherealInfo(0x2135, 0x3EAC), //Ostard
new EtherealInfo(8501, 16035), //DesertOstard
new EtherealInfo(8502, 16036), //FrenziedOstard
new EtherealInfo(0x2615, 0x3E9A), //Ridgeback
new EtherealInfo(0x25CE, 0x3E9B), //Unicorn
new EtherealInfo(0x260F, 0x3E97), //Beetle
new EtherealInfo(0x25A0, 0x3E9C), //Kirin
new EtherealInfo(0x2619, 0x3E98), //SwampDragon
new EtherealInfo(9751, 16059), //SkeletalMount
new EtherealInfo(10090, 16020), //Hiryu
new EtherealInfo(11676, 16018), //ChargerOfTheFallen
new EtherealInfo(11669, 16016), //Chimera
new EtherealInfo(11670, 16017), //CuSidhe
new EtherealInfo(8417, 16069), //PolarBear
new EtherealInfo(0x9844, 16071), //Tiger
new EtherealInfo(0x46F8, 16070) //ArmoredBoura

};
 
Also make sure you add it to the Enums as well:

public enum EtherealTypes {
Horse,
Llama,
Ostard,
OstardDesert,
OstardFrenzied,
Ridgeback,
Unicorn,
Beetle,
Kirin,
SwampDragon,
SkeletalHorse,
Hiryu,
ChargerOfTheFallen,
Chimera,
CuSidhe,
PolarBear,
Tiger,
ArmoredBoura

}
 
Excellent! Thanks! Sorry for the late response I have had debate the past couple of days! Also the reason it was not showing is I have about 6 different UO Clients installed and my UOSteam was not configured to my OSI Version!

Thanks Will update the code!
 
Name: Tiger Statue
Graphic: 0x9844 (38980)
Height/Capacity: 3
Weight: 1
Animation: 0
Quality/Layer/Light: 0
Quantity: 0
Hue: 0
StackingOffset/Unk4: 0
Flags: None
Item 0x9844.png
 
Back