Hello I put together a small script for some wings i added to the game. The script complies but when i go to [add fairywings nothing appears. I had the wings working once before but the wings showed up infront of the hands. So i worked till i worked my self out of working at allll . what am i doing wrong ?
 

Attachments

  • FairyWings.cs
    1.3 KB · Views: 22
Tim can we get the wings also to see what is wrong with that part also? just the wings wont work right if we dont have the wings in the baseclothing also
 
You are making it derive from "BaseClothing" which has no default constructor, so it's interpreting the itemID you are passing it as a Serial or something. You need to also pass the Layer, or change it from BaseClothing to something else like BaseCloak.
 
You are making it derive from "BaseClothing" which has no default constructor, so it's interpreting the itemID you are passing it as a Serial or something. You need to also pass the Layer, or change it from BaseClothing to something else like BaseCloak.
Thank you I will try that Very grateful for your response.
 
Back