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?

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...