Jump to content

Recommended Posts

Posted

Im looking for 2 scripts:

  • Kill/Res to feed PvP/Pk
  • After buffs expiring go automatic to Village make the buffs(Scheme) and go back where  the farm zone is
  • Upvote 1
Posted

 

Im looking for 2 scripts:

  • Kill/Res to feed PvP/Pk
  • After buffs expiring go automatic to Village make the buffs(Scheme) and go back where  the farm zone is

 

for kill/res just create from event window.It's easy to make feed pvp this way.make char attack bot till death,use res when enemy dead and make bot window accept it.run it and you're fine feeding pvp.

 

As for village rebuff try some shared scripts,just change id buffer,buffs you want to take and locations coordinates

Posted (edited)

for kill/res just create from event window.It's easy to make feed pvp this way.make char attack bot till death,use res when enemy dead and make bot window accept it.run it and you're fine feeding pvp.

 

As for village rebuff try some shared scripts,just change id buffer,buffs you want to take and locations coordinates

How i can make via Event window make the player accept the ressurection?

Edited by OLSI
Posted (edited)

for kill/res just create from event window.It's easy to make feed pvp this way.make char attack bot till death,use res when enemy dead and make bot window accept it.run it and you're fine feeding pvp.

 

As for village rebuff try some shared scripts,just change id buffer,buffs you want to take and locations coordinates

var Figth_Flag:boolean;
     Item: TL2Item;
     Npc: TL2Npc;
     Obj: TL2Buff;
     IdBuff: integer;
     Buffs:TL2Buff;
var L2Skill: TL2Skill;


procedure toVillage;
begin
Print('To Village');
  Delay(100);
    if (User.HP=0) then
      begin
       Delay(2000);
       Engine.GoHome;
       Engine.Facecontrol(0,False);
       Buff;
      end;
end;


procedure buff;
begin
     Print('Go Buffer');
     Engine.Settarget(35650); 
     Delay(15000);
     Engine.Settarget(35650);
     Delay(15000);
     Engine.DlgOpen;
     Delay(15000);
     Engine.DlgSel(1);
     Delay(800);
     Engine.DlgSel(5);   //Wind Walk
     Delay(400);
     Engine.DlgSel(7);   //Shield
     Delay(300);
     Engine.DlgSel(8);   //Mental Shield
     Delay(300);
     Engine.DlgSel(9);   //Blessed Body
     Delay(300);
     Engine.DlgSel(10);   //Blessed Soul
     Delay(300);
     Engine.DlgSel(11);   //Magic Barrier
     Delay(300);
     Engine.DlgSel(12);   //Concentration
     Delay(300);
     Engine.DlgSel(13);   //Berserker Spirit
     Delay(300);
     Engine.DlgSel(15);    // Acumen
     Delay(300);
     Engine.DlgSel(16);  //Concentration
     Delay(300);
     Engine.DlgSel(22);  // Greater Shield
     Delay(300);
     Engine.DlgSel(24); //Wild Magic
     Delay(300);
     Engine.DlgSel(25);  // Resist Shock
     Delay(300);
     Engine.DlgSel(26); //Clarity
     Delay(300);
     Engine.DlgSel(2);  //SONGS
     Delay(300);
     Engine.DlgSel(5);   //Song EARTH
     Delay(400);
     Engine.DlgSel(7);   //Song Water
     Delay(300);
     Engine.DlgSel(8);   //Song Warding
     Delay(300);
     Engine.DlgSel(9);   //Song Wind
     Delay(300);
     Engine.DlgSel(11);   //Song Vitality
     Delay(300);
     Engine.DlgSel(13);   //Song Renewal
     Delay(300);
     Engine.DlgSel(3);   // DANCE 
     Delay(300);
     Engine.DlgSel(7);  //Dance Mystic
     Delay(300);
     Engine.DlgSel(10);  // Dance Concentration
     Delay(500);
     Engine.DlgSel(12);  //Dance Siren
     Delay(500);
     Engine.DlgSel(14);  // Dance Earth Guard
     Delay(600);
     Engine.DlgSel(4);  // Other
     Delay(500);
     Engine.DlgSel(8);  //Magnus
     Delay(500);
     Engine.DlgSel(10);  //Paagrio Fist
     Delay(500);
     Engine.DlgSel(14);  //Elem. Protection
     Delay(500);
     Engine.DlgSel(23);  //Gift Seraphin
     Delay(500); 
   RunTo;
end;


procedure RunTo;
begin
     Print('Go Teleporte');
     Engine.SetTarget('GK');  //Target do NCP GK
     Delay(1500);
     Engine.DlgOpen; // abre chat combat npc
     Delay(1500);
     Engine.DlgSel(3);
     Delay(1500);
     Engine.DlgSel(1);
     Delay(1500);
     Fight;
end;


procedure toBuff;
  begin
  IdBuff:=1204 ;  //Check BUFF
   while not User.Buffs.ById(IdBuff,obj) do begin
        Print('Check Buff');
        Engine.UseItem(736);  //Scroll Escape
        Delay(7000);
        buff;
   end;
end;


procedure Fight;
   begin
   Print('Fight zone');
    Engine.MoveTo(146952, -70120, -3664);
    Delay(500);
    Engine.MoveTo(146872, -70424, -3560);
    Delay(500);
    Engine.MoveTo(145624, -73352, -4336);
    Delay(500);
    Engine.LoadConfig('1');    //Νΰηβΰνθε Βΰψεγξ κξντθγΰ
    Engine.LoadZone('zona2.zmap');   //zona de combat
    Print('Τΰπμ');
    toVillage;
    Engine.Facecontrol(0,True);
end;


//-----------------------------------------------------------------------------
begin    //repete novamente o script
Print('repete novamente');
  repeat
   toBuff;
   toVillage;
  until Engine.Status = lsOffline;
  Delay(5000);
end.

i find this scripts but idk if it will work

Edited by OLSI
Posted

 

var Figth_Flag:boolean;
     Item: TL2Item;
     Npc: TL2Npc;
     Obj: TL2Buff;
     IdBuff: integer;
     Buffs:TL2Buff;
var L2Skill: TL2Skill;


procedure toVillage;
begin
Print('To Village');
  Delay(100);
    if (User.HP=0) then
      begin
       Delay(2000);
       Engine.GoHome;
       Engine.Facecontrol(0,False);
       Buff;
      end;
end;


procedure buff;
begin
     Print('Go Buffer');
     Engine.Settarget(35650); 
     Delay(15000);
     Engine.Settarget(35650);
     Delay(15000);
     Engine.DlgOpen;
     Delay(15000);
     Engine.DlgSel(1);
     Delay(800);
     Engine.DlgSel(5);   //Wind Walk
     Delay(400);
     Engine.DlgSel(7);   //Shield
     Delay(300);
     Engine.DlgSel(8);   //Mental Shield
     Delay(300);
     Engine.DlgSel(9);   //Blessed Body
     Delay(300);
     Engine.DlgSel(10);   //Blessed Soul
     Delay(300);
     Engine.DlgSel(11);   //Magic Barrier
     Delay(300);
     Engine.DlgSel(12);   //Concentration
     Delay(300);
     Engine.DlgSel(13);   //Berserker Spirit
     Delay(300);
     Engine.DlgSel(15);    // Acumen
     Delay(300);
     Engine.DlgSel(16);  //Concentration
     Delay(300);
     Engine.DlgSel(22);  // Greater Shield
     Delay(300);
     Engine.DlgSel(24); //Wild Magic
     Delay(300);
     Engine.DlgSel(25);  // Resist Shock
     Delay(300);
     Engine.DlgSel(26); //Clarity
     Delay(300);
     Engine.DlgSel(2);  //SONGS
     Delay(300);
     Engine.DlgSel(5);   //Song EARTH
     Delay(400);
     Engine.DlgSel(7);   //Song Water
     Delay(300);
     Engine.DlgSel(8);   //Song Warding
     Delay(300);
     Engine.DlgSel(9);   //Song Wind
     Delay(300);
     Engine.DlgSel(11);   //Song Vitality
     Delay(300);
     Engine.DlgSel(13);   //Song Renewal
     Delay(300);
     Engine.DlgSel(3);   // DANCE 
     Delay(300);
     Engine.DlgSel(7);  //Dance Mystic
     Delay(300);
     Engine.DlgSel(10);  // Dance Concentration
     Delay(500);
     Engine.DlgSel(12);  //Dance Siren
     Delay(500);
     Engine.DlgSel(14);  // Dance Earth Guard
     Delay(600);
     Engine.DlgSel(4);  // Other
     Delay(500);
     Engine.DlgSel(8);  //Magnus
     Delay(500);
     Engine.DlgSel(10);  //Paagrio Fist
     Delay(500);
     Engine.DlgSel(14);  //Elem. Protection
     Delay(500);
     Engine.DlgSel(23);  //Gift Seraphin
     Delay(500); 
   RunTo;
end;


procedure RunTo;
begin
     Print('Go Teleporte');
     Engine.SetTarget('GK');  //Target do NCP GK
     Delay(1500);
     Engine.DlgOpen; // abre chat combat npc
     Delay(1500);
     Engine.DlgSel(3);
     Delay(1500);
     Engine.DlgSel(1);
     Delay(1500);
     Fight;
end;


procedure toBuff;
  begin
  IdBuff:=1204 ;  //Check BUFF
   while not User.Buffs.ById(IdBuff,obj) do begin
        Print('Check Buff');
        Engine.UseItem(736);  //Scroll Escape
        Delay(7000);
        buff;
   end;
end;


procedure Fight;
   begin
   Print('Fight zone');
    Engine.MoveTo(146952, -70120, -3664);
    Delay(500);
    Engine.MoveTo(146872, -70424, -3560);
    Delay(500);
    Engine.MoveTo(145624, -73352, -4336);
    Delay(500);
    Engine.LoadConfig('1');    //Νΰηβΰνθε Βΰψεγξ κξντθγΰ
    Engine.LoadZone('zona2.zmap');   //zona de combat
    Print('Τΰπμ');
    toVillage;
    Engine.Facecontrol(0,True);
end;


//-----------------------------------------------------------------------------
begin    //repete novamente o script
Print('repete novamente');
  repeat
   toBuff;
   toVillage;
  until Engine.Status = lsOffline;
  Delay(5000);
end.
i find this scripts but idk if it will work

so try it lol

and edit for you server

Posted

How i can make via Event window make the player accept the ressurection?

make bot char accept all chats by everyone on settings,and make bot char for it to autohit the nearest flagged (your 1st char) instantly when he get up.make the event on first char,2nd just use settings to get up and autohit the 1st (nearest flagged player),no need to create event for second,tho you can use both simple settings or make event for bot character

  • 2 months later...
Posted

its menu from my script . is full working scripts for pvp. I make it for interlude its will be work on other chronicle.

 

 

soon i will make video for this script.

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


  • Posts

    • any public server using mobius epilogue files?
    • 新品上线! 提供高级订阅账号,支持热门AI服务:Gemini Pro 和 Perplexity AI。 ➡ Gemini Pro 订阅 + 2TB 谷歌云存储(绑定您的 Google 账号,有效期1年)| 需要访问您的 Google 账号 | 价格:6美元起 ➡ Perplexity AI Pro 订阅(绑定您的账号,有效期1年)| 需要访问您的账号 | 价格:6美元起 欢迎通过我们的网站或 Telegram 机器人购买! 有效链接: 数字商品商店(网站):前往 商店 Telegram 机器人:前往 其他服务: 购买 Telegram Stars 的机器人:前往 SMM 面板:前往 – 推广您的社交媒体账号。 以下是我们平台最新的促销与特别优惠列表: 1. 促销码 OCTOBER2025(8% 折扣),适用于十月期间在我们的网站或机器人中购物!首次购买可使用促销码 SOCNET(15% 折扣)。 2. 获取1美元余额或10–20%折扣 —— 注册后在我们网站的论坛帖子中留言,格式为:"SEND ME BONUS, MY USERNAME IS..."。 3. 首次试用 SMM 面板即可获得1美元奖励 —— 只需在我们网站(支持中心)提交主题为 “Get Trial Bonus” 的工单。 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻: ➡ Telegram 频道:https://t.me/accsforyou_shop✅ ➡ WhatsApp 频道:https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t✅ ➡ Discord 服务器:https://discord.gg/y9AStFFsrh✅ 联系方式与支持: ➡ Telegram:https://t.me/socnet_support✅ ➡ WhatsApp:https://wa.me/79051904467✅ ➡ Discord:socnet_support ✅ ➡ ✉ 邮箱:solomonbog@socnet.store ✅
    • 新品上线! 提供高级订阅账号,支持热门AI服务:Gemini Pro 和 Perplexity AI。 ➡ Gemini Pro 订阅 + 2TB 谷歌云存储(绑定您的 Google 账号,有效期1年)| 需要访问您的 Google 账号 | 价格:6美元起 ➡ Perplexity AI Pro 订阅(绑定您的账号,有效期1年)| 需要访问您的账号 | 价格:6美元起 欢迎通过我们的网站或 Telegram 机器人购买! 有效链接: 数字商品商店(网站):前往 商店 Telegram 机器人:前往 其他服务: 购买 Telegram Stars 的机器人:前往 SMM 面板:前往 – 推广您的社交媒体账号。 以下是我们平台最新的促销与特别优惠列表: 1. 促销码 OCTOBER2025(8% 折扣),适用于十月期间在我们的网站或机器人中购物!首次购买可使用促销码 SOCNET(15% 折扣)。 2. 获取1美元余额或10–20%折扣 —— 注册后在我们网站的论坛帖子中留言,格式为:"SEND ME BONUS, MY USERNAME IS..."。 3. 首次试用 SMM 面板即可获得1美元奖励 —— 只需在我们网站(支持中心)提交主题为 “Get Trial Bonus” 的工单。 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻: ➡ Telegram 频道:https://t.me/accsforyou_shop✅ ➡ WhatsApp 频道:https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t✅ ➡ Discord 服务器:https://discord.gg/y9AStFFsrh✅ 联系方式与支持: ➡ Telegram:https://t.me/socnet_support✅ ➡ WhatsApp:https://wa.me/79051904467✅ ➡ Discord:socnet_support ✅ ➡ ✉ 邮箱:solomonbog@socnet.store ✅
    • New Products! Accounts with premium subscriptions for popular AI services Gemini Pro and Perplexity AI. ➡ Gemini Pro Subscription + 2TB Google Storage on your Google Account for 1 YEAR | Requires access to your Google account | Price from: $6 ➡ Perplexity AI Pro Subscription ON YOUR ACCOUNT for 1 YEAR | Requires access to your account | Price from: $6 Shop in our online store or through our Telegram bot! Active Links: Digital goods store (Website): Go Store Telegram bot: Go Other services: Telegram bot for purchasing Telegram Stars: Go SMM Panel: Go – promote your social media accounts. We would like to present you with the current list of promotions and special offers for purchasing products and services from our platform: 1. Promo code OCTOBER2025 (8% discount) for purchases in our store (Website or Bot) in October! You can also use the first-time promo code SOCNET (15% discount). 2. Get $1 credited to your store balance or a 10–20% discount — just post your username after registration on our website in the following format: "SEND ME BONUS, MY USERNAME IS..." – post it in our forum thread! 3. Get $1 for your first SMM Panel trial — just open a support ticket titled “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our Telegram bot for Star purchases! News: ➡ Telegram channel: https://t.me/accsforyou_shop✅ ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t✅ ➡ Discord server: https://discord.gg/y9AStFFsrh✅ Contacts and Support: ➡ Telegram: https://t.me/socnet_support✅ ➡ WhatsApp: https://wa.me/79051904467✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅
    • New Products! Accounts with premium subscriptions for popular AI services Gemini Pro and Perplexity AI. ➡ Gemini Pro Subscription + 2TB Google Storage on your Google Account for 1 YEAR | Requires access to your Google account | Price from: $6 ➡ Perplexity AI Pro Subscription ON YOUR ACCOUNT for 1 YEAR | Requires access to your account | Price from: $6 Shop in our online store or through our Telegram bot! Active Links: Digital goods store (Website): Go Store Telegram bot: Go Other services: Telegram bot for purchasing Telegram Stars: Go SMM Panel: Go – promote your social media accounts. We would like to present you with the current list of promotions and special offers for purchasing products and services from our platform: 1. Promo code OCTOBER2025 (8% discount) for purchases in our store (Website or Bot) in October! You can also use the first-time promo code SOCNET (15% discount). 2. Get $1 credited to your store balance or a 10–20% discount — just post your username after registration on our website in the following format: "SEND ME BONUS, MY USERNAME IS..." – post it in our forum thread! 3. Get $1 for your first SMM Panel trial — just open a support ticket titled “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our Telegram bot for Star purchases! News: ➡ Telegram channel: https://t.me/accsforyou_shop✅ ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t✅ ➡ Discord server: https://discord.gg/y9AStFFsrh✅ Contacts and Support: ➡ Telegram: https://t.me/socnet_support✅ ➡ WhatsApp: https://wa.me/79051904467✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅
  • Topics

×
×
  • 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