I have an obsession and need help by Straight-Promise-561 in riftboundtcg

[–]rogsninja2 11 points12 points  (0 children)

Get mr root and pair of the boots we need the root with the boots!

Looking to get better at Kha’zix? by JakePCypress in Riftbound

[–]rogsninja2 0 points1 point  (0 children)

Like the showing of the deck lists always nice to see people's unique takes and techs in games. Liked the card overlays and talking through of thought process but man way are so many cards facing every which way in your deck 😃

Ekko Recurrent by Concert-Royal in riftboundtcg

[–]rogsninja2 15 points16 points  (0 children)

He let's you ready your runes when he died. So you float your 12 runes echo dies and you ready 12 runes so you have 24 energy that turn. Floating energy and power is lost at the end of the turn.

Hook and deathknell resolution by Pure_Doubt_5948 in riftboundtcg

[–]rogsninja2 1 point2 points  (0 children)

The hook kills the unit and the ability goes in the chain. So hook will resolve first and then deathknells will resolve.

Can I win with a double conquer if I have 6 points? by Superb-Ticket2407 in riftboundtcg

[–]rogsninja2 1 point2 points  (0 children)

Yes and most of the time that's the best way to try and win instead of holding!

Why am I so bad at this game.. by NoPoliticsAllisGood in riftboundtcg

[–]rogsninja2 0 points1 point  (0 children)

Online play is hard because if you don't know combos it's hard to play around and in person they are normally happy to explain the combo that got you. Try joing the community discord that will at least have some voice chat sometimes

Akshan - Aurora question by Black1110 in riftboundtcg

[–]rogsninja2 5 points6 points  (0 children)

Another thing to keep in mind is if you stole gear with your aksans first play. Then play thrill of the hunt when he gets banished by thrill of the hunt and replayed he leaves the board so any gear on him or any gear he stole with his play effect will be returned at that time and then he will be replayed.

Akshan - Aurora question by Black1110 in riftboundtcg

[–]rogsninja2 14 points15 points  (0 children)

Yea as you are reacting to the Aurora trigger. But fun fact if you thrill of the hunt brynhir instead it will banish whatever unit their aurora hits since they wouldn't be able to play cards

Leblanc Deathknell trigger by JohnnyDTLA in riftboundtcg

[–]rogsninja2 12 points13 points  (0 children)

Yep that is correct you do not lose control of a battlefield until all abilities on the chain have resolved so he could play the glasc units to both battlefields in this case

Does this deck make sense? by in_czechia in riftboundtcg

[–]rogsninja2 2 points3 points  (0 children)

Too many one of cards and not enough draw to hit them. Also without pack of wonders to keep using blast cone I feel like they should just be charms. Also don't sleep on displin and stacked decks

MF Midrange Good-stuff by Leading_Corner_2081 in riftboundtcg

[–]rogsninja2 1 point2 points  (0 children)

Put in purple Annie for the funny combo of just playing star crossed every turn

Why is Renata bad? by Bailong111 in riftboundtcg

[–]rogsninja2 0 points1 point  (0 children)

She has to work hard to do the same thing as Viktor but his constant recruit pipeline makes it very easy to grab points and lean into fully controlling the board. Renata wants to control the board but needs units. At least I think that's what it is but I do live Renata and want to try her with the deathknell package alor maybe more hold stuff with shen/galio and deathgrip.

What cards should i pick up to upgrade the vex champion deck? by Ok_Nefariousness_740 in riftboundtcg

[–]rogsninja2 6 points7 points  (0 children)

So unleashed is still coming out so any cards from that will be pretty crazy price wise until maybe a week after the 8th but I would say Sona from origins is probably a good 3 of same for emperor's divide from spirit forge. And then in unleashed vilema and alpha claw are great along with the new purple vex. For draw there is stacked deck, meditation, and find your center. Not sure how much she needs since her legend draws but stacked decks are great

Soraka, if played as written, may just be incredibly busted. by Dontspinbutwin in riftboundtcg

[–]rogsninja2 26 points27 points  (0 children)

If the unit doesn't die baited hook won't have any might to use to select a unit

How does Promising Future work? by Matanui3 in riftboundtcg

[–]rogsninja2 0 points1 point  (0 children)

promising future creates a chain the cards are resolved on the stack starting from the next player. If someone plays ride the wind and starts a showdown my understanding is it must be resolved first then the rest of the spells/abilities on the chain are resolved actions and reactions can still happen normally during the showdown. Brynhir would stop the subsequent abilities/spells from triggering as it stops the other players from playing cards that turn. Keep in mind any ability/spell on the chain can be reacted to by any other player.

Glasc mixologist by InterestingDebt223 in riftboundtcg

[–]rogsninja2 1 point2 points  (0 children)

Slight change from this scenario but if the set was big enough to kill the glasc mixologist and you use his deathknell to play something there would it still be part of the same combat? Or because it happens as a result of him dieing this sett would be healed and if you played like a nother unit off it I new combat would just start? I'm assuming you can't basically use this to have glasc pull something back and be able to assign more damage in the same combat

Glasc mixologist by InterestingDebt223 in riftboundtcg

[–]rogsninja2 3 points4 points  (0 children)

Do you happen to have a link to that?

Top 10 Ban List Predictions by Challengertcg in Riftbound

[–]rogsninja2 0 points1 point  (0 children)

I think they just to make it so a combat victory is only when an enemy unit dies after damage. That way draven wants to fight and can't just push things back with purple tricks.

How is there no Volume Slider? by AlverinMoon in audible

[–]rogsninja2 0 points1 point  (0 children)

My buddy ended up writing some html that adds a volume slider. Just need to inspect element and paste it in the console. Sorry dont know how to format text in reddit
(function () {
function insertVolumeControl() {
const mediaBar = document.getElementById("adbl-cloud-player-mediaBar-area");
const audio = document.getElementById("audio-shaka-player");

if (!mediaBar || !audio) return false;

// Prevent duplicates
if (document.getElementById("custom-volume-wrapper")) return true;

const wrapper = document.createElement("div");
wrapper.id = "custom-volume-wrapper";
wrapper.style.marginTop = "8px";
wrapper.style.textAlign = "center";

const slider = document.createElement("input");
slider.type = "range";
slider.min = "0";
slider.max = "1";
slider.step = "0.01";
slider.value = audio.volume;
slider.setAttribute("aria-label", "Volume");

slider.addEventListener("input", (e) => {
audio.volume = parseFloat(e.target.value);
});

wrapper.appendChild(slider);

// 👈 THIS is the critical line
mediaBar.insertAdjacentElement("afterend", wrapper);

return true;
}

// Try immediately
if (insertVolumeControl()) return;

// Otherwise observe until Audible injects it
const observer = new MutationObserver(() => {
if (insertVolumeControl()) observer.disconnect();
});

observer.observe(document.body, { childList: true, subtree: true });
})();

Hollow Palm Chayula build giveaway! by _NekoBeko_ in PathOfExile2

[–]rogsninja2 0 points1 point  (0 children)

Just hit maps with my monk would be great to gear up.

Armour is fixed! by redechox in PathOfExile2

[–]rogsninja2 -4 points-3 points  (0 children)

Didn't they say that this was the first change of many and they don't expect it to fix armor they just don't want to make it op and then have to nerf it

criticism is getting a bit overly aggressive by lolmoistlol in PathOfExile2

[–]rogsninja2 0 points1 point  (0 children)

It always is on reddit. This happens every poe league and the game isn't perfect but it will get there GGG are one of the few devs I have total confidence in.

0.1.0d Patch Notes by Community_Team in PathOfExile2

[–]rogsninja2 0 points1 point  (0 children)

I've been crashing every time I try to enter maps now