ive been for the last few days been tryin to get this Everlasting bandage script i have connected to Bandself as well as regular bandages. my issue is eather the everlasting gets consumed or it doesent register the Bandage itself even with taking consume part out can anyone assist me?
 

Attachments

  • BandSelf.cs
    2 KB · Views: 30
  • Bandage.cs
    13.5 KB · Views: 26
  • EverlastingBandage.cs
    14.8 KB · Views: 18
I do not quite understand that part of the Everlasting, but first have to fix bandage.cs the script to work with bandself. Add the code below after the serialization of bandages

Code:
public static void BandSelfCommandCall( Mobile from, Item m_Bandage )
        {
            from.RevealingAction();

            if ( BandageContext.BeginHeal( from, from ) != null )
                m_Bandage.Consume();

        }
 
Back