Jump to content

Recommended Posts

Posted

Hello, i wrote a script for my bot to make soe when need's rebuff and turn back to the farm zone.

The problem is when character turns to the farm zone, it targets again the (custom) gatekeeper and the mobs, and the character is going down and up all the time

Is any solution to stop targeting the gatekeeper when teleports on the farm zone?

 

Here is the code

repeat
if (GetMe():GotBuff(4356) == false) 

then

SetPause(true);
ShowToClient("System", "Need Rebuff!");
Sleep(1000);
UseItem(7126);
Sleep(500);
ShowToClient("System", "Teleporting!");
Sleep(10);

moveDistance = 30;

MoveTo(83401, 148161, -3405, moveDistance);
MoveTo(83420, 148239, -3405, moveDistance);
MoveTo(83360, 148303, -3405, moveDistance);TargetNpc("Jimmy", 30515);
Talk();
ClickAndWait("npc_268474098_Chat 77", "Macros Mage");
ClickAndWait("npc_268474098_mbuff", "UNKNOWN BUTTON 0");
ClickAndWait("npc_268474098_heal", "Restore");
MoveTo(83235, 148352, -3405, moveDistance);
MoveTo(83339, 148304, -3405, moveDistance);
MoveTo(83449, 148306, -3405, moveDistance);
MoveTo(83530, 148183, -3405, moveDistance);
MoveTo(83518, 148088, -3405, moveDistance);
TargetNpc("Margaret", 30576);
Talk();
ClickAndWait("npc_268474147_Chat 27", "Drop PvP");
ClickAndWait("npc_268474147_goto 10170", "Field of Whispers 2");
MoveTo(83470, 147913, -3405, moveDistance);
WaitForTeleport();
MoveTo(75025, 207770, -3072, moveDistance);
SetPause(false);
end;
until false;

 

Posted

its for tower,

after SetPause(false); add while loop waiting for your death (you will need check tower docs for that)

repeat
    Sleep(1000);
until GetMe():<is user dead method here>

 

Posted
42 minutes ago, Mantosh said:

If it's for adrenaline, aren't you missing a `begin` after `if() then`?

Its for tower

26 minutes ago, AlmostGood said:

its for tower,

after SetPause(false); add while loop waiting for your death (you will need check tower docs for that)

repeat
    Sleep(1000);
until GetMe():<is user dead method here>

 

Thnx seems working for now

Posted

Hello i try to write this code for l2adrenaline the cracked version

but is keep giving me an error on 4th line saying Undeclared identifier "buff"

 

var
 buff: TL2Buff;
begin
  if not user.buff.ByID(4356) then begin
  Print ('Buffing...');
  Engine.SetTarget (30515); // NPC ID
  Engine.MoveToTarget;
  Engine.DlgOpen;
  Delay (500);
  Engine.DlgSel (7);   //Open buffs
  Delay (500);
  Engine.DlgSel(1);
  Delay (500);
  Engine.DlgOpen;
  Delay (500);
  Engine.DlgSel (6);
  Delay (5000);
  Print ('Buffed.');
  end;
end.

can anyone help with this?

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