I'm looking for a push in the right direction and possibly some help with getting this script to work, my end goal is to be able to have deeds that add the abilities to my pet. The script below gives me a error on line 239 saying "Server.Mobiles.BaseSpecialCreature.BreathStart(Server.Mobile)" No suitable method found to override. I've never worked with special attacks before so I have no clue where to start. Thanks in advance!
 

Attachments

  • [ServUO.com]-BaseSpecialCreature.cs
    18.9 KB · Views: 16
Change
Code:
public override void BreathStart( Mobile target )
to:
Code:
public override void BreathStart( IDamageable target )
 
Back