Jump to content

Recommended Posts

Posted

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

Posted

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

Posted

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 :)

Posted

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

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