Jump to content

L2 Adrenaline Scripts.


Recommended Posts

Since i can't see codes by dialog viewer how i can buff with aoutobuff or with scheme buffer on redemption. I need script for nuker buff-port on drakos-farm till dead-repeat. Or maybe holy crystals quest script. Thanks

Link to comment
Share on other sites

Since i can't see codes by dialog viewer how i can buff with aoutobuff or with scheme buffer on redemption. I need script for nuker buff-port on drakos-farm till dead-repeat. Or maybe holy crystals quest script. Thanks

just log at tales,

 

there make dialog viewer things and at redemption use, hard logic 2k15)))

Link to comment
Share on other sites

just log at tales,

 

there make dialog viewer things and at redemption use, hard logic 2k15)))

Ofc I tried but tales is with different al+b now. Give me script for nuker farming all night drakos pls :)

Link to comment
Share on other sites

Hello.

Does anyone can help me to understand how to make bot chars follow our NPC dialogue, gatekeeper etc

uses
  Classes, SysUtils;

var
  myChars: TStringList;

procedure allDlgOpen;
var
  remoteControl: TL2Control;
  i: integer;
begin
  for i:=0 to myChars.Count-1 do
  begin
     remoteControl := GetControl(myChars[i]);
        if Assigned(remoteControl) then
        begin
           remoteControl.DlgOpen; //??????? ?????? ?????
        end;
  end;

  Engine.DlgOpen; // ??????? ?????? ??????
end;

procedure allDlgSel(index: integer);
var
  remoteControl: TL2Control;
  i: integer;
begin
  for i:=0 to myChars.Count-1 do
  begin
     remoteControl := GetControl(myChars[i]);
        if Assigned(remoteControl) then
        begin
           remoteControl.DlgSel(index); //??????? ?????? ?????
        end;
  end;
  Engine.DlgSel(index); // ??????? ?????? ??????
end;

begin
  myChars := TStringList.Create;
  myChars.add('Char1');
  myChars.add('Char2');

  allDlgOpen;
  allDlgSel(1);
  allDlgSel(2);
end.

try check this, i find in one forrum maybe help

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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