Jump to content

Recommended Posts

Posted

Hey guys as the title says i tried for 1st time to put spoiler bot on 1 server i searched on google wich ssetup is correctly and i did it, but i have 1 litte problem with "Sweeper", when the Mob is dead and spoiled he dosent sweep at all...can any1 help me???

Thanks!

P.S:I dont know if this is the correct section for the Thread and sorry for my english :D

  • 2 weeks later...
Posted

Always im getting target from my spoiler in farm :p

Nuker and spoiler farming set party setting to target from spoiler and nuker attack set just spoil and sweep and it will be fine..

  • 1 month later...
Posted (edited)
var
int: integer;
mob: tl2npc;
sweep: tl2skill;

begin
while true do begin
    for int:=0 to npclist.count-1 do begin
        mob := npclist.items(int);
        if mob.valid and mob.dead and mob.sweepable and (skilllist.byid(42,sweep) and (sweep.endtime = 0)) then
            if (user.distto(mob) < 300) then //max range of sweeping
                if engine.settarget(mob) then engine.useskill(sweep);
    end;
delay(500);//0,5 sec delay
end;
end.

this should do the job

Edited by 106gti
  • Like 1
  • 3 weeks later...
Posted
var
int: integer;
mob: tl2npc;
sweep: tl2skill;

begin
while true do begin
    for int:=0 to npclist.count-1 do begin
        mob := npclist.items(int);
        if mob.valid and mob.dead and mob.sweepable and (skilllist.byid(42,sweep) and (sweep.endtime = 0)) then
            if (user.distto(mob) < 300) then //max range of sweeping
                if engine.settarget(mob) then engine.useskill(sweep);
    end;
delay(500);//0,5 sec delay
end;
end.

this should do the job

 

I love you so much bro <3 thank you for sharing it, works perfect

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