ReAgent Thread menu

Shout-Out

User Tag List

Page 3 of 11 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 154
  1. #31
    coussiraty's Avatar Member
    Reputation
    1
    Join Date
    Jun 2024
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone made a script for blink?

    ReAgent Thread
  2. #32
    Breached's Avatar Active Member
    Reputation
    23
    Join Date
    Dec 2017
    Posts
    86
    Thanks G/R
    3/17
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi ,

    I'm hoping someone may know the solution to something I'd like to achieve with the AutoQuit rule/script.
    I've got it working ok with a flat rule of AutoQuit at 15% HP but I'm hoping there might be a way to further add conditions to it based on location i.e. don't AutoQuit if in an excluded zone. Here's some pseudo code (I don't really know the language/structure etc it uses) to give an example:

    Code:
    ExcludedZoneList = ["Zone A", "Zone B", "Zone C"]
    
    while (CurrentZone != ExcludedZoneList) {
        if (vitals.hp <= 15) {
            autoquit
        } else {
            do nothing
        }
    }
    Thanks in advance to anyone that may be able to help.

  3. #33
    miranda123's Avatar Member
    Reputation
    10
    Join Date
    Dec 2024
    Posts
    12
    Thanks G/R
    2/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Breached View Post
    Hi ,

    I'm hoping someone may know the solution to something I'd like to achieve with the AutoQuit rule/script.
    I've got it working ok with a flat rule of AutoQuit at 15% HP but I'm hoping there might be a way to further add conditions to it based on location i.e. don't AutoQuit if in an excluded zone. Here's some pseudo code (I don't really know the language/structure etc it uses) to give an example:

    Code:
    ExcludedZoneList = ["Zone A", "Zone B", "Zone C"]
    
    while (CurrentZone != ExcludedZoneList) {
        if (vitals.hp <= 15) {
            autoquit
        } else {
            do nothing
        }
    }
    Thanks in advance to anyone that may be able to help.
    you can do something like this
    Code:
    ( SinceLastActivation(0.1) 
    && Vitals.HP.percent <= 15 
    && AreaName!="area1" 
    && AreaName!="area2" ) 
    ? DisconnectSideEffect() : null
    Last edited by miranda123; 02-17-2025 at 12:17 AM.

  4. #34
    Breached's Avatar Active Member
    Reputation
    23
    Join Date
    Dec 2017
    Posts
    86
    Thanks G/R
    3/17
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by miranda123 View Post
    you can do something like this
    Code:
    ( SinceLastActivation(0.1) 
    && Vitals.HP.percent <= 15 
    && AreaName!="area1" 
    && AreaName!="area2" ) 
    ? DisconnectSideEffect() : null
    Thanks a lot, super appreciate it. Tested it and seems to work using the rule feedback so will implement it properly once offsets are updated.
    Thanks again .

  5. #35
    bernhof's Avatar Member
    Reputation
    1
    Join Date
    May 2014
    Posts
    32
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone have soul offering buff name, or information how to get buff name?
    Want to make script for soul offering autouse

    something like that

    SinceLastActivation(0.4) &&
    Skills["SoulOffering"].CanBeUsed &&
    !Buffs.Has("soul_offering_source")

  6. #36
    miranda123's Avatar Member
    Reputation
    10
    Join Date
    Dec 2024
    Posts
    12
    Thanks G/R
    2/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bernhof View Post
    Does anyone have soul offering buff name, or information how to get buff name?
    Want to make script for soul offering autouse

    something like that

    SinceLastActivation(0.4) &&
    Skills["SoulOffering"].CanBeUsed &&
    !Buffs.Has("soul_offering_source")

    you can use devtree plugin to find buff names, but you need to activate buff first, i think. when open devtree, click player then buffs, all active buffs are listed there

  7. Thanks bernhof (1 members gave Thanks to miranda123 for this useful post)
  8. #37
    cheatH13's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2017
    Posts
    25
    Thanks G/R
    4/10
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by coussiraty View Post
    Has anyone made a script for blink?
    when or in what situation do you want ReAgent to auto blink?

  9. #38
    coussiraty's Avatar Member
    Reputation
    1
    Join Date
    Jun 2024
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's for second hand, in this case when pressing space he would change the weapon and press space again something like that lol

  10. #39
    cheatH13's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2017
    Posts
    25
    Thanks G/R
    4/10
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by coussiraty View Post
    It's for second hand, in this case when pressing space he would change the weapon and press space again something like that lol
    I see. you're using the tech to save spirit by allocating blink to your second weapon set. I think you'll need something like AHK for that.

  11. #40
    aliyarra1's Avatar Member
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    2
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys why tempest bell combo doesnt work with second weapon set? how can I fix that?

  12. #41
    distel's Avatar Member
    Reputation
    5
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Search GitHub for autoblink
    There's is a plugin for it

  13. #42
    Wulfryke's Avatar Member
    Reputation
    3
    Join Date
    Jun 2022
    Posts
    8
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ive tried making my own script, using inspiration from others here, but sadly I just don't know where to find or access an actual dictionary of the game terms for each skill/buff, if anyone has an actual dictionary of the terms that'd make my life so much easier to work with.

    Skills["WarBannerPlayer"].CanBeUsed &&
    Buffs.has("valour") &&
    Buffs["valour_stack"].Charges > 10 &&
    MonsterCount(30, MonsterRarity.magic | MonsterRarity.AtLeastRare) > 0
    This didnt work, so im not sure what to do.

  14. #43
    Wulfryke's Avatar Member
    Reputation
    3
    Join Date
    Jun 2022
    Posts
    8
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Solved it, took me an embarassingly long 27 minutes of sitting in dev tree and throwing expressions at the wall, and im still not entirely sure how i did this, so wish me luck in the future.

    War Banner Code:

    SinceLastActivation(1.5) &&
    Skills["warbannerreservationplayer"].canbeused &&
    Buffs["valour_war"].charges > 20 &&
    MonsterCount(10, MonsterRarity.AtLeastRare) >= 1
    Change charges to desired amount, 5 was for testing, ill be making my default 20 during campaign leveling and 40 in maps. Skill takes a while to cast, it required since last activation lest it spam itself.

    NEXT GOAL: Is enemy primed? Cast bone shatter! Wish me luck (or for the love of god help me)

  15. #44
    Mweh's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @cheatingeagle It seems like some pointers in ExileCore2 is broken, causing issues in Reagent, CanBeUsed on Flasks are not working correctly and some monster Distances/Positions vectors are 0

  16. #45
    Qake2023's Avatar Member
    Reputation
    1
    Join Date
    Feb 2025
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mweh View Post
    @cheatingeagle It seems like some pointers in ExileCore2 is broken, causing issues in Reagent, CanBeUsed on Flasks are not working correctly and some monster Distances/Positions vectors are 0
    I can confirm this, all of a sudden my mana flask wont go off. All of my other functions work properly.

Page 3 of 11 FirstFirst 1234567 ... LastLast

Similar Threads

  1. Joana Mancow Leveling Video Request Thread
    By Matt in forum World of Warcraft General
    Replies: 31
    Last Post: 11-19-2006, 02:54 PM
  2. Decide which Banner we use voting thread
    By Matt in forum Community Chat
    Replies: 43
    Last Post: 06-30-2006, 06:22 AM
  3. MMOwned's Official Unofficial PTR (Public Test Realm) Thread!
    By janzi9 in forum World of Warcraft General
    Replies: 11
    Last Post: 05-27-2006, 06:56 PM
  4. Gimped Thread!
    By janzi9 in forum Community Chat
    Replies: 5
    Last Post: 05-24-2006, 11:36 PM
  5. Pimped Thread!
    By janzi9 in forum Community Chat
    Replies: 1
    Last Post: 05-24-2006, 03:49 AM
All times are GMT -5. The time now is 05:12 AM. 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