Hey everyone, I'm wondering if someone could shed some light on what I'm doing wrong and just direct me the correct way.

I'm trying to implement all the pets into the Vencillio base I am working with and I'm not sure where I'm going wrong. All the models are loading properly but when I try to animate most of them just disappear, perhaps I don't have the animations available but I don't know where exactly the code is pulling them from.

Currently this is my code

Code:
		case 6715:
			entityDef.name = "Heron";
			entityDef.actions = new String[5];
			entityDef.actions[0] = "Pick-up";
			entityDef.anIntArray94 = new int[] { 29756 };
			entityDef.walkAnim = 6774;
			entityDef.standAnim = 6772;
			entityDef.anInt86 = 140;
			entityDef.anInt91 = 140;
			break;
			
		case 6717:
			entityDef.name = "Beaver";
			entityDef.actions = new String[5];
			entityDef.actions[0] = "Pick-up";
			entityDef.anIntArray94 = new int[] { 29754 };
			entityDef.walkAnim = 7178;
			entityDef.standAnim = 7177;
			entityDef.anInt86 = 140;
			entityDef.anInt91 = 140;
			break;
Heron works great, no issue with that one at all. When beaver is placed it's invisible with these current anim codes.

Not looking to be spoon fed but just some guidance if you're willing to help!

Thank you.