ExileCore2 - advanced QoL framework menu

Shout-Out

User Tag List

Page 7 of 41 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 604
  1. #91
    onedaygod's Avatar Banned
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello sir, I am unable to access the download page here. Is there any other way to download it? T T

    ExileCore2 - advanced QoL framework
  2. #92
    xbruhh's Avatar Member
    Reputation
    1
    Join Date
    Jul 2015
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a plugin to autoquit like in GameHelper or a way to do it with ReAgent? i tried autoquit from exiledcore 1 but doesnt work
    Last edited by xbruhh; 01-18-2025 at 01:38 PM.

  3. #93
    WorldHateCenter's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx but where can you download the poe2 plugins for the bot

  4. #94
    Kingnello's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    23
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xyf1 View Post
    1.charged_staff
    SinceLastActivation(0.5)&&Buffs["power_charge"].Charges >= 5 &&Buffs["charged_staff_stack"].TimeLeft <= 3

    2.charged_staff
    Buffs["charged_staff_stack"].Charges >= 5&&Buffs["charged_staff_stack"].TimeLeft <= 6&Buffs["power_charge"].Charges >= 2

    3.combo
    SinceLastActivation(0.1)&&Buffs.Has("tempest_bell_active")&&Buffs["elemental_invocation_reserve"].Charges > 50

    4.Duang!
    SinceLastActivation(0.1)&&Buffs["tempest_bell_combo_tracker"].Charges >= 4&&MonsterCount(10, MonsterRarity.AtLeastRare) >= 1

    5.elemental_invocation
    Buffs["elemental_invocation_reserve"].Charges >= 30&&(MonsterCount(40, MonsterRarity.AtLeastRare) >= 1 || MonsterCount(40, MonsterRarity.Any) >= 10)
    Is there any option to use the bell only against unique monsters i tried .unique but didnt get it to work

  5. #95
    Houken's Avatar Member
    Reputation
    2
    Join Date
    Jan 2025
    Posts
    11
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WorldHateCenter View Post
    thx but where can you download the poe2 plugins for the bot
    on the program itself:

    Screenshot_5.png

  6. Thanks WorldHateCenter (1 members gave Thanks to Houken for this useful post)
  7. #96
    ddt442's Avatar Member
    Reputation
    8
    Join Date
    Oct 2009
    Posts
    35
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kingnello View Post
    Is there any option to use the bell only against unique monsters i tried .unique but didnt get it to work
    Post your code and a screenshot of your skill setting, please.
    Thank you.

  8. #97
    neoikkokx's Avatar Member
    Reputation
    10
    Join Date
    Dec 2024
    Posts
    9
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Since it's in super high demand, I'm going to share my Ice Strike Invoker ReAgent scripts.

    Script 1: Efficient Charged Staff Usage
    This script ensures that the Charged Staff skill is only used under optimal conditions. It checks if you have the "power_charge" buff, if the "charged_staff_stack" is below 6 charges, and if there are no enemies within a range of 50. This is ideal for maximizing stack-building efficiency without wasting charges.

    Code:
    Skills["ChargedStaffPlayer"].CanBeUsed &&
    Buffs.has("power_charge") &&
    Buffs["charged_staff_stack"].Charges < 6 &&
    MonsterCount(50) == 0
    Script 2: Maintaining Power Charge Buffs
    This script makes sure your power charge-related buffs don’t expire. It uses the Charged Staff skill if you have the "power_charge" buff but it’s about to run out (less than 5 seconds left) or if the "charged_staff_stack" buff is active but also close to expiring (less than 5 seconds left). It’s a simple way to prevent buff downtime while keeping stacks ready.

    Code:
    Skills["ChargedStaffPlayer"].CanBeUsed && (
    
    Buffs.has("power_charge") &&
    Buffs["power_charge"].TimeLeft < 5
    ) || (
    
    Buffs.has("power_charge") &&
    Buffs["charged_staff_stack"].TimeLeft < 5
    )
    Script 3: Smart Tempest Bell Combo Execution
    This script optimizes the use of the Tempest Bell skill. It only activates Tempest Bell when the "tempest_bell_combo_tracker" buff has 4 charges and there are enemies within a 30-radius area that are Magic rarity or higher. This ensures the skill is used effectively in dense or high-priority enemy clusters.

    Code:
    Skills["TempestBellPlayer"].CanBeUsed &&
    Buffs["tempest_bell_combo_tracker"].Charges == 4 &&
    MonsterCount(30, MonsterRarity.Magic | MonsterRarity.AtLeastRare) > 0
    Feel free to use or modify these scripts as needed. They’ve worked really well for me, and I hope they’ll help you too. Let me know if you have any questions!

  9. Thanks dtmajors, andriel666, ali_ee, poeking99 (4 members gave Thanks to neoikkokx for this useful post)
  10. #98
    Snake-Rpg's Avatar Member
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    3
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    I need it

    Originally Posted by Snake-Rpg View Post
    How do I make mine work by showing rare and normal monsters like yours? I've been trying for days
    Help me consolando ksksnsisk

  11. #99
    WorldHateCenter's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please create a discord channel for the Bot

  12. #100
    Kingnello's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    23
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ddt442 View Post
    Post your code and a screenshot of your skill setting, please.
    Thank you.
    klipp.jpg

    I have the bell on Q and the code is SinceLastActivation(0.1) && Buffs["tempest_bell_combo_tracker"].Charges >=4&&MonsterCount(1,MonsterRarity.Unique) >=1

    (tried to add an image dont know if it worked)klipp.jpg

  13. #101
    dtmajors's Avatar Member
    Reputation
    12
    Join Date
    Sep 2009
    Posts
    160
    Thanks G/R
    30/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow.

    Big thanks to everyone for helping out with the Reagent issues and getting everyone up and going.

  14. #102
    lordahx's Avatar Member
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get so many errors spamming my screen its unfortunately not usable without a discord to share problems.

  15. #103
    SteelClaww's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It sucks the Discord server was made private, I was a member before but I was kicked, it was full of the information I need right now.

  16. #104
    abo9loo7's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    couldn't get it to work nothing is clear, its like reading hirogliphes, im gamer not programer how tf do i get this to work, all i want is simple map radar im going crazy rn
    Last edited by abo9loo7; 01-18-2025 at 05:15 PM.

  17. #105
    chissy's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wo sind die plugins? sehe keine monster !

Page 7 of 41 FirstFirst ... 34567891011 ... LastLast

Similar Threads

  1. [Guide] How to make advanced scripts - thought process framework with example
    By EthEth in forum PoE Bots and Programs
    Replies: 17
    Last Post: 3 Weeks Ago, 01:00 AM
  2. Guide to 3 paths of advanced leatherworking
    By xlAnonym0uslx in forum World of Warcraft Guides
    Replies: 1
    Last Post: 04-21-2025, 06:50 PM
  3. Tackle Box v0.2 Advanced Fishing Bot!
    By lopolop in forum World of Warcraft Bots and Programs
    Replies: 66
    Last Post: 03-17-2007, 08:41 AM
  4. Advanced reloger
    By LightWave in forum World of Warcraft Bots and Programs
    Replies: 16
    Last Post: 01-23-2007, 03:51 PM
All times are GMT -5. The time now is 06:49 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search