|Sutats|
Initiate
I'm working on a custom Evo steed that has two different mounted ID's at two different stages. Stage 5 it would look like a horse and Stage 6 would look like a charger of the fallen, I've used
MountedItemID = 0x3E92
MountID =
ItemID =
within each stage on the EvoSpec.cs but i get this error " The name 'MountedItemID' does not exist in this current context "
I figured I could just do it like this because I can change hues, and bodyvalues per stage.
There is the spot within Evo.cs where you insert the initial MountedID
would the easiest route just be some extension of this?
Any insight or suggestions to help me out would be appreciated.
MountedItemID = 0x3E92
MountID =
ItemID =
within each stage on the EvoSpec.cs but i get this error " The name 'MountedItemID' does not exist in this current context "
I figured I could just do it like this because I can change hues, and bodyvalues per stage.
There is the spot within Evo.cs where you insert the initial MountedID
Code:
public EvoMutant( string name ) : base( name, 790, 0x3E92 )
{
}
Any insight or suggestions to help me out would be appreciated.