Hi there!
I'm returning to UO after almost a year away.
I've downloaded the new version of servuo and i'm using some the custom scripts (boats and nerun); not sure if i'm changing anything in mobile.cs or basevendor.cs, but i'm receiving this error:
error.png
The "portuguese" part of the message means: a right method for substitution wasn't found (or something like that ;))
Thanks in advance for any help!
 
It sounds like you are missing 'IsInvulnerable' property in your BaseCreature.cs. I'd double check that this line is in BaseCreature and we can go from there.
Code:
public virtual bool IsInvulnerable { get { return false; } }
 
Dont Forget to Serialize this Attribute ( In case you want to change it in future ) and make a private attribute about. Else this will be always false and just solve your code related issue.
 
Back