i edited my ethereals.cs to add ethereal pet dye
but i get this error, im loading my ethereal.cs plz help

Errors:
+ Mobiles/Normal/Ethereals.cs:
CS0115: Line 82: 'Server.Mobiles.EtherealMount.LabelAttributesTo(Server.Mobi
le)': no suitable method found to override
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 

Attachments

  • Ethereals.cs
    36.6 KB · Views: 0
Maybe instead add a code to your pet dye for the ethereal? Now this is not tested and I'm not a scripter so any errors you get maybe some one could help you out :)

else if (target is EtherealMount)
Item item = (Item)target;

if (item.RootParent == from) // Make sure its in their pack
item.Hue = m_Hue;
else
from.SendMessage("You can only dye objects that are in your backpack!");
 
Back