u/SeasonedChilly

My first 10/10 Ubers in SSFHC [Which's my first HC League], 40/40 done, Absolutely happy I decided to go HC this league and I intend to switch to being HC every league now!

I think I'll stay HC moving forward, despite the fact I had some disheartning RIPs to DD, the sense of achievement and joy is like x100 and you continue to "feel" something regardless of how powerful your characters get because you can die even in a normal maven fight if you're not paying attention!

For those curious about the build and it's pob etc, It's Animate Guardian of Smiting Schizo Juggernaut, Or essentially the second tankiest build I could think of [Tankiest being BV Chieftain with foulborn lightning coil and mageblood]

Here's the PoB with the correct config [the unconditional stuff are ticked off, so without flasks etc]

https://pobb.in/h5U6Qbga45aP
Here's the character page from PoE Ninja ladder :

https://poe.ninja/poe1/builds/miragehcssf/character/SeasonedChilly-4258/Mirage_ChillyBombastic?i=1&search=name%3Dmirage_chilly

Here's a fun clip from the closest to ripping I got [a Rune spawned under my feet in the middle of an Annhilation in uber exarch]

https://www.twitch.tv/seasoned_chilly/clip/OutstandingShortLorisMau5-h9OKWLQfV0va9_oh

And the vod from the 10/10 fights

https://www.twitch.tv/videos/2766309969?t=00h05m17s

u/SeasonedChilly — 7 days ago

Hey there, someone posted asking about a weighted sum for wands for their DPS, and I remembered that someone posted this post: (Lifesaver for SSF standard, search all of your stash tabs and alts for any item! Acquisition still works!) sometime ago, and I've since used it when searching for some items since I hoard a lot of items from breach tree for recombs etc

The post was made by u/horndog2

Here's the details from the post if you don't want to press the link:

https://preview.redd.it/1euuw49uk4zg1.png?width=1080&format=png&auto=webp&s=7cea27c92c3d96c3ee7741a7471cd1f1dff2ad38

I was trying to play some SSF standard the other day and realized how much I missed Looty for searching through my stash for items. Turns out Acquisition can do the same thing! Its an old app that used to be popular for listing items without buying premium tabs, but I guess its been updated and has a great search feature as well!

I stumbled upon this thread on the official forums: https://www.pathofexile.com/forum/view-thread/3495039 where my hero Gerawic said he maintains a fork for it on github https://github.com/gerwaric/acquisition !

See example pic of searching for some chaos and fire res boots. Very glad something like this still exists so I wanted to share the knowledge. Enjoy!

reddit.com
u/SeasonedChilly — 10 days ago

Hey everyone,

A quick comment : If you're worried about my account's age, just go to chat gpt and ask it the following prompt :

I've gotten tired of the mental countdown in my head everytime i kill a boss to farm companionship or a jewel or any other gem, so I created this simple visual and audio script that'll look like this on your screen,

As soon as you kill whomever you're farming, press F1, It'll count down 23s, and make a beep sound, once that happens, run to the middle to reset and run to boss, it should respawn, and you can reset the counter at anytime by pressing F1 again [in case you mess something up or decide to test or so]

It'll cover the top left buff icon, I wanted to make it top right but realized it'll cause some people issues bec we all might have different screen widthes etc, but alas, feel free to use it [It should be 100% safe in terms of ToS since it's more or less similar to live split, and has no effect in game]

#Persistent

#SingleInstance Force

duration := 23

remaining := 0

running := false

; Create GUI

Gui, +AlwaysOnTop -Caption +ToolWindow

Gui, Font, s15 Bold, Arial

Gui, Add, Text, vTimerText Center w20 h20, 23

Gui, Show, x0 y0 NoActivate

F1::

remaining := duration

running := true

Gosub, UpdateTimer

SetTimer, Tick, 100

return

Tick:

if (running) {

remaining -= 0.1

if (remaining <= 0) {

remaining := 0

running := false

SetTimer, Tick, Off

SoundBeep

}

Gosub, UpdateTimer

}

return

UpdateTimer:

GuiControl,, TimerText, % Ceil(remaining)

return

P.S :

If you're worried about my account's age and don't want to take a script from me, feel free to use the prompt below in chatgpt or any AI, it'll achieve an almost identical result [I gave it back to chatgpt and asked it to make a prompt for it]

Write a simple AutoHotkey script that creates a minimal on-screen countdown timer.

Requirements:

  • Timer duration is 23 seconds
  • Pressing F1 starts or resets the countdown
  • Display the remaining time as a number (rounded up to whole seconds)
  • Update the timer smoothly (every 100ms)
  • Play a beep sound when the timer reaches 0

UI requirements:

  • Always on top
  • No window border or title bar
  • Small, minimal design
  • Font: Arial, bold, size 15
  • Very small display area (around 20x20)
  • Center the text inside the box
  • Position the timer at the top-left corner of the screen (x0 y0)
  • No interaction required (NoActivate)

Keep the script clean, simple, and without unnecessary features.

u/SeasonedChilly — 16 days ago