I keep getting this error could anyone tell me how to fix it please.....13750
 

Attachments

  • [ServUO.com]-SinkAddon.cs
    4.9 KB · Views: 1
Does your ItemInterfaces.cs have this in it?

public enum DirectionType
{
None = 0,
South = 1,
East = 2
}

I don't know if this is a fix but this is a place to start looking for the problem.
 
It's worth a shot to try it. Here's mine to compare. I'm not sure if there would be more to it than this, but worth a try for sure. ;)
 

Attachments

  • ItemInterfaces.cs
    1.4 KB · Views: 4
Well as it states, there is already one definition of ItemQuality in that namespace, now you have at least 2. Wich means the code doesnt know wich to use.

Therefor you need to remove one enum of ItemQuality
 
Well as it states, there is already one definition of ItemQuality in that namespace, now you have at least 2. Wich means the code doesnt know wich to use.

Therefor you need to remove one enum of ItemQuality
Just cant think right today (brain Tumors) i cant seem to figure it out tried to del one of the itemquality but came with another error .. just wont have those scripts i guess thanks for the help though
 
Did you drop the interfaces script I posted in or edit yours? If you dropped the one I posted in try deleting this

public enum ItemQuality
{
Low,
Normal,
Exceptional,
}

from right above this

public enum DirectionType
{
None = 0,
South = 1,
East = 2
}
 
Back