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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...