Jump to content

Recommended Posts

Posted

Hello Guys, I need Interlude bishop script... auto party healling and cleanse.
I do not have money, please help me.  :wub:

Posted (edited)

auto cleance

    const
        CLEANSE_ID = 1409;
        ITERATION_DELAY = 100;
        
    var
        skill: TL2Skill;
        i: Integer;
     
    begin
     
        while Engine.Status = lsOnline do
        begin
     
            if (SkillList.ByID(CLEANSE_ID, skill)) then
            begin
            
                for i:=0 to Party.Chars.Count - 1 do
                begin
                
                    if (Party.Chars.Items(i).AbnormalID > 0) then
                    begin
                        Engine.SetTarget(Party.Chars.Items(i));
                        Engine.UseSkill(CLEANSE_ID, true, true);
                    end;
                    
                    if User.AbnormalID > 0 then
                    begin
                        Engine.SetTarget(User);
                        Engine.UseSkill(CLEANSE_ID, true, true);
                    end;
                    
                end;
                
            end;
     
            Delay(ITERATION_DELAY);
     
        end;
      
    end.
Edited by fAkeN
Posted

 

auto cleance

    const
        CLEANSE_ID = 1409;
        ITERATION_DELAY = 100;
        
    var
        skill: TL2Skill;
        i: Integer;
     
    begin
     
        while Engine.Status = lsOnline do
        begin
     
            if (SkillList.ByID(CLEANSE_ID, skill)) then
            begin
            
                for i:=0 to Party.Chars.Count - 1 do
                begin
                
                    if (Party.Chars.Items(i).AbnormalID > 0) then
                    begin
                        Engine.SetTarget(Party.Chars.Items(i));
                        Engine.UseSkill(CLEANSE_ID, true, true);
                    end;
                    
                    if User.AbnormalID > 0 then
                    begin
                        Engine.SetTarget(User);
                        Engine.UseSkill(CLEANSE_ID, true, true);
                    end;
                    
                end;
                
            end;
     
            Delay(ITERATION_DELAY);
     
        end;
      
    end.

this script is crap :D

it wont cleanse 99% of debuffs

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock