ServUO Version
Publish Unknown
Ultima Expansion
Age Of Shadows
Hello!

I've got some issue with Frenzied ostards. Suddenly the animation for riding a frenzied ostard has vanished. Does anyone know where or from what file the hex that is in the script for frenziedostard is pulled from? Can't find any kind of animationlist that goes this high (0x3EA4).
 
That is hard coded placeholder graphic id value inside the client. If you use CUO client then there is fallback to tiledata -> AnimId so you can set any item graphic and on tiledata for that graphic you can point it to animal anim id. For original client you are bound to fixed list of ids.

You are right that there is no animation body id that is higher than 2048. 0x3EA4 is just static id or item graphic id. When you mount something you are equipping item with that graphic set and that results in mount animation as client when see item equipped on layer 25 translates that graphic via internal table to animation body id value and displays the animation. As I said before this list is fixed so you can't easily change this inside original client. It's customizable with CUO if you really need to have more mounts.

And list looks like this. I haven't checked for updated values in last year so no idea if there were new values added.

Code:
body-id-anim    itemid
0x0072    0x3EA9
0x0073    0x3EAA
0x0074    0x3EA7
0x0075    0x3EA8
0x0076    0x3EB2
0x0077    0x3EB1
0x0078    0x3EAF
0x0079    0x3EB0
0x007A    0x3EB4
0x0084    0x3EAD
0x0090    0x3EB3
0x00A9    0x3E95
0x00AA    0x3EAB
0x00AB    0x3EAC
0x00B1    0x3EB5
0x00B2    0x3EB6
0x00B3    0x3EB7
0x00BB    0x3EBA
0x00BC    0x3EB8
0x00BE    0x3E9E
0x00BF    0x3E9C
0x00C0    0x3E9B
0x00C0    0x3E9D
0x00C1    0x3E9A
0x00C2    0x3E98
0x00C3    0x3E97
0x00C8    0x3E9F
0x00CC    0x3EA2
0x00D2    0x3EA3
0x00D5    0x3EC5
0x00DA    0x3EA4
0x00DB    0x3EA5
0x00DC    0x3EA6
0x00E2    0x3EA0
0x00F3    0x3EA1
0x00E4    0x3E94
0x0114    0x3E90
0x0115    0x3E91
0x011C    0x3E92
0x01B0    0x3EC6
0x0317    0x3EBC
0x0319    0x3EBB
0x031A    0x3EBD
0x031F    0x3EBE
0x042D    0x3EC9
0x04E6    0x3EC7
0x04E7    0x3EC8
0x0579    0x3ECA
0x057F    0x3ECB
0x0580    0x3ECD
0x0582    0x3ECC
0x059A    0x3ECE
0x05A0    0x3ECF
0x05A1    0x3ED0
0x05E6    0x3ED1
0x05F6    0x3ED2
0x05F7    0x3ED3
 
Last edited:
Back