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.

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.



  • Posts

    • Subscription System (aka VIP, Premium) Boost your server’s revenue and player engagement with our powerful and fully customizable Subscription System — designed to reward loyal players while enhancing gameplay experience and server longevity. Key Features & Benefits 1. Flexible Subscription Plans Supports unlimited subscription plans, starting from as short as 1 day. Players can easily purchase subscriptions via NPC commands (e.g., npc_%objectId%_buySubscription 7 for 7 days). Clear in-game commands like .subscription provide detailed info about subscription benefits to players. 2. Exclusive Visual Customization Subscribers get a special name color customizable via hex code (e.g., green 00FF00) to stand out in-game. Optional hero chat mode for subscribers, with configurable chat prefixes (e.g., [S]), increasing social visibility and status. Chat restrictions can be lifted or customized for subscribers, creating an enhanced communication experience. 3. Gameplay Enhancements Bonus experience (XP) and skill points (SP): Subscribers receive configurable XP and SP multipliers, allowing faster leveling and skill progression. Quest bonuses: Subscription grants increased quest drop rates, enhanced quest rewards (adena, XP, SP), boosting player motivation. Drop bonuses: Multiplier bonuses on spoil drops, currency drops, raid drops, regular items, herbs, and seal stones ensure subscribers get more loot. Enchant & Augmentation Boosts: Increased chance to successfully enchant gear and augment items, giving subscribers an edge in gearing up. 4. Quality of Life Improvements Town speed boost: Subscribers enjoy faster movement speed in towns, reducing downtime and enhancing convenience. PvE bonus damage: Increased damage against monsters and bosses for subscribers, improving farming and event participation efficiency. Nobless blessing: Optional perks such as nobless blessings to highlight subscriber status. 5. Gifts & Incentives Automatic subscription gift system, configurable with custom item IDs and amounts to reward loyal subscribers regularly.   Why Choose This Subscription System? Highly Configurable: Every bonus and perk can be individually tweaked in your config file, letting you tailor the system perfectly to your server’s economy and balance. Easy to Integrate: Works seamlessly with your existing server infrastructure and NPC systems. Player Retention: Encourages longer playtimes and subscription renewals by making subscribers feel valued and rewarded. Monetization Friendly: Provides a stable and scalable revenue stream without disrupting fair gameplay for non-subscribers. Clear Value Proposition: Detailed and transparent subscription benefits foster trust and encourage players to invest.   Configurable Parameters Include Config preview: Subscription config file - Pastebin.com   Experience and Skill Point Multipliers: SubscriptionExpBonus, SubscriptionSpBonus Quest-related Bonuses: Drop chance, quest rewards (adena, XP, SP) Drop Rate Multipliers: Spoil, currency, raid, items, herbs, seal stones Enchant and Augmentation Chance Bonuses Visual Customizations: Name color, hero chat mode prefix Movement Speed Boost in Towns PvE Damage Bonus Subscription Gifts   Summary Unlock the full potential of your server’s subscription system — deliver tangible benefits that keep players invested and make your server stand out in the competitive market. Whether you want to increase revenue, improve player satisfaction, or build a thriving community, this subscription system is a powerful tool designed for your success.   Pricing & Support Subscription System Package — €40 Discord: @fivoszzz   What you get: Full Subscription System plugin with all the powerful features and configurations described above. Complete installation assistance to integrate smoothly with your existing server setup. Personalized support for any questions or custom tweaks needed — ensuring your system runs perfectly. Easy-to-understand configuration file with detailed comments for full control.
    • Thanks for this - such a nicely neat and tidy package. Gonna give it a go with a VM to check it out.   Cheers,
    • We are certainly not an ambulance, but we will definitely cure you of blacklists and empty pockets. Live freely with SX! Each of you will receive a trial version of SX to familiarize yourself with the product, all you have to do is post in this thread
    • you have backup l2jorion ?
    • Hello Friends , i'm looking for ACP-DONATE PANEL FOR L2J Orion , full working !
  • 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