Jump to content

Recommended Posts

Posted

So i have a script for specific server but i want to make it to detect when quest is completed can anyone help ?

Script: 
 

var
  i:integer;
begin
  print(user.target.attackable);
  while true do
  begin
    delay(user.cast.endtime);
    for i:=0 to CharList.count-1 do
    if ((not CharList.Items(i).Dead) and (not CharList.Items(i).Name.Contains('Bot'))
      //and CharList.Items(i).attackable
      //and CharList.Items(i).InZone
      //and (CharList.Items(i).ClanID<>User.ClanID)
      ) then
    begin
      engine.settarget(CharList.Items(i));
      Engine.UseSkill(19);
      break;
    end;
    while ((not user.target.dead) and (not user.dead)) and (not user.target.Name.Contains('Bot')) do 
      begin
      Engine.UseSkill(19);
      Engine.UseSkill(369);
      Engine.UseSkill(101);
         delay(user.cast.endtime);
      end;
    engine.canceltarget;
  end;
end.

Is it even possible with this script ?

  • 5 months later...
  • Vision locked this topic
Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..