got this message on server when I tried to make this mobile work I attached the mobile file... It should work but when I attempt to spawn or add it into the game it does not appear 13288
 

Attachments

  • NewOrcRider.cs
    4.9 KB · Views: 2
This line is odd
C#:
AddItem(new OrcMask(Hue = 667));
you can try remove it and test it or change it to
C#:
AddItem(new OrcMask(667));
or
C#:
AddItem(new OrcMask(){Hue = 667});
 
Back