[ExileAPI Plugin] GiantCounter - Easily count giant rogue exiles in rituals menu

User Tag List

Results 1 to 6 of 6
  1. #1
    uncledolan's Avatar Active Member
    Reputation
    16
    Join Date
    Apr 2012
    Posts
    99
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    [ExileAPI Plugin] GiantCounter - Easily count giant rogue exiles in rituals

    Made this a while ago at beginning of league, just for self use. Figured I'd release it for anyone else who wants to use it. I don't have much background in writing plugins but it seems to work okay, feel free to fork and do whatever you want with it.

    It will count all giant exiles either on the screen or within a certain radius of ritual altars. Default range is 1000, which seems to be the correct radius of the altar itself. Also draws a semitransparent circle around the altar if you want.


    You can specify a hotkey to snapshot the current number of exiles fitting the parameters to make it easier to remember how many you saw.
    Draws an overlay saying how many total, and also tags each entity with a counter.


    Plugin here, make a folder called GiantCounter in your Plugins/Source folder.

    GitHub - ExiledWriter/GiantCounter: Plugin for ExileAPI to count giant exiles

    Note that it will only show you how many exiles are currently matching the rules you set. It is possible an exile spawns outside of the ritual altar and then moves within range. I didn't see any way to tell if the entity spawned within range of the altar or not, only if it was currently in range.
    Last edited by uncledolan; 2 Weeks Ago at 03:28 PM.

    [ExileAPI Plugin] GiantCounter - Easily count giant rogue exiles in rituals
  2. Thanks CeliborCrash, inihendry, camapxam, EthEth, qquoba (5 members gave Thanks to uncledolan for this useful post)
  3. #2
    iseria's Avatar Member
    Reputation
    1
    Join Date
    Aug 2018
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by uncledolan View Post
    Made this a while ago at beginning of league, just for self use. Figured I'd release it for anyone else who wants to use it. I don't have much background in writing plugins but it seems to work okay, feel free to fork and do whatever you want with it.

    It will count all giant exiles either on the screen or within a certain radius of ritual altars. Default range is 1000, which seems to be the correct radius of the altar itself. Also draws a semitransparent circle around the altar if you want.


    You can specify a hotkey to snapshot the current number of exiles fitting the parameters to make it easier to remember how many you saw.
    Draws an overlay saying how many total, and also tags each entity with a counter.


    Plugin here, make a folder called GiantCounter in your Plugins/Source folder.

    GitHub - ExiledWriter/GiantCounter: Plugin for ExileAPI to count giant exiles

    Note that it will only show you how many exiles are currently matching the rules you set. It is possible an exile spawns outside of the ritual altar and then moves within range. I didn't see any way to tell if the entity spawned within range of the altar or not, only if it was currently in range.
    Thanks! But maybe some Giant Rogues aren't counted? Sorry if I'm wrong.

  4. #3
    Joueur001's Avatar Member
    Reputation
    2
    Join Date
    Aug 2019
    Posts
    6
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for sharing this

  5. #4
    pescini's Avatar Member
    Reputation
    5
    Join Date
    Jun 2025
    Posts
    1
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, sup, I forked and made a change on your script to show the giants name below the number of the giants when you press the snapshot key. Like shown below

    Sem título.png

    This way when I extract the vessel I can compare the names on the snapshot with the names on the vessel, I know it's not 100% trustable because the names can repeat and other shits can happen but as far as I tested it, It improved a lot the level of trust of the vessels.

    I was thinking in another change to do that can help a lot on vessels creation. The change is, when you enter a map it automatically take a snapshot of all rituals in the map and the giants inside it and print a list on your screen like that:

    Ritual 1: 5 giants.
    list name of the giants here.

    Ritual 2: 1 giant.
    list name of the giants here.

    Ritual 3: 5 giants.
    list name of the giants here.

    Ritual 4: 1 giant.
    list name of the giants here.

    Then we print the number above each ritual when it appear on your screen.

    With that when you create the blood vessel you can check the names in the vessel with the list printed. This way we might know when the map possibly have a god ritual as soon as it starts, gaining a lot of time. Again, I know it is not 100% trustworthy but I think it might help a lot.

    Unfornately I don't have the knowledge neither the time needed to implement my idea, but anyone who thinks it is worth the time is welcome to implement.

    Here is the plugin with the change that I made to print the giants name: GitHub - cesarpescini/GiantCounter: Plugin for ExileAPI to count giant exiles

    Note: I don't know if all the rituals are acessible in memory when you enter the map, If they aren't just ignore my idea.
    Last edited by pescini; 1 Week Ago at 10:28 AM.

  6. Thanks spazman6117, qquoba, NoodlesAreTheBest, joedirt86 (4 members gave Thanks to pescini for this useful post)
  7. #5
    uncledolan's Avatar Active Member
    Reputation
    16
    Join Date
    Apr 2012
    Posts
    99
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pescini View Post
    Hey, sup, I forked and made a change on your script to show the giants name below the number of the giants when you press the snapshot key. Like shown below

    Sem título.png

    This way when I extract the vessel I can compare the names on the snapshot with the names on the vessel, I know it's not 100% trustable because the names can repeat and other shits can happen but as far as I tested it, It improved a lot the level of trust of the vessels.

    I was thinking in another change to do that can help a lot on vessels creation. The change is, when you enter a map it automatically take a snapshot of all rituals in the map and the giants inside it and print a list on your screen like that:

    Ritual 1: 5 giants.
    list name of the giants here.

    Ritual 2: 1 giant.
    list name of the giants here.

    Ritual 3: 5 giants.
    list name of the giants here.

    Ritual 4: 1 giant.
    list name of the giants here.

    Then we print the number above each ritual when it appear on your screen.

    With that when you create the blood vessel you can check the names in the vessel with the list printed. This way we might know when the map possibly have a god ritual as soon as it starts, gaining a lot of time. Again, I know it is not 100% trustworthy but I think it might help a lot.

    Unfornately I don't have the knowledge neither the time needed to implement my idea, but anyone who thinks it is worth the time is welcome to implement.

    Here is the plugin with the change that I made to print the giants name: GitHub - cesarpescini/GiantCounter: Plugin for ExileAPI to count giant exiles

    Note: I don't know if all the rituals are acessible in memory when you enter the map, If they aren't just ignore my idea.
    There is a "network bubble" in PoE, so it doesn't load monsters into memory unless you are within a certain range. Unfortunately this means we can't just find out which monsters are within ritual right at map load time.

  8. #6
    EthEth's Avatar Contributor Authenticator enabled
    Reputation
    82
    Join Date
    Aug 2016
    Posts
    118
    Thanks G/R
    77/68
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Understanding this should be mandatory before using anything more then standard plugins included in ExileAPI package...
    My post was helpful? Consider using Thank you!

    We are here together, be part of community, help others and get helped by others

Similar Threads

  1. [Release] [ExileApi/PoEHelper/POEHUD plugin] Beasts - Easily find profitable beasts!
    By PoThePlug in forum PoE Bots and Programs
    Replies: 152
    Last Post: 5 Days Ago, 02:25 AM
  2. ExileApi (Old POEHUD) Overlay for Path of Exile
    By Qvin in forum PoE Bots and Programs
    Replies: 1159
    Last Post: 09-04-2024, 10:06 AM
  3. Replies: 1
    Last Post: 01-21-2021, 06:26 PM
  4. ExileApi Plugin: Level Up Gems
    By dirkbach666 in forum PoE Bots and Programs
    Replies: 6
    Last Post: 12-22-2019, 03:31 AM
  5. [How-To] Easily get Giant Dinosaur Bones for Pet/Mount
    By cyndrill0204 in forum World of Warcraft Guides
    Replies: 2
    Last Post: 10-17-2014, 09:41 AM
All times are GMT -5. The time now is 03:42 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