No- I fought her with my two T13s one after the other around 6:30am Subeta time yesterday. One got the book, the other did not. It was supposed to be there from the get go.
Has anybody compiled a list yet, which challengers drop Amulets or Tomes beyond 10?
Mirror Ghoul, Devora, Wolve & ?
">https://subeta.net/forums.php/read/908355/Battle-Chat-2021/140/ That post is correct, except Mirror also drops amulets.
Weapon Question
portects 100% of steal! Right?
There is some weapon that protects 100% of freeze? Or scroll?
It's likely the blessing when active that protects against stealing. Yes , there are blessings on weapons that prevent freezing and also ones that block freezing and stealing at the same time.
The blessing on OHS protects from stealing, but it has to activate. The bullets generated from Natasha protects from freezing. Other than that, the blessing on ostaff and neo spork protect from freezing/stealing
There's also a bunch that do partial protection. The blessing from the Mecha has freeze and steal protection but even when active it only blocks them some of the time.
Thats exactly what I was aiming for perfect.
The only problem is that the BC page auto scrolls down a bit, do you know if there is anyway to stop that from happening? Otherwise the alignment on the page itself is perfect, the page just jerks around a bit, and I have to scroll up each time.
I got my own version to work yesterday, but yours is 1000x prettier lol, and my version broke other parts of the site that yours appears to not mess up lol.
Is there a way to do the same concept with battle quests too? on the page that has both "fight this opponent again" and "Battle Quests" maybe split the buttons in half so on the left is fight again and on the right is battle quest?
[edit] My super Hacky fix that looks super ugly but is function was to change the -46 to +76, and you can click through without moving your mouse again. It kinda covers up some of the UI if you do need to manually adjust a weapon.
[Center] [tp=thesovereign] :dmg🔥 [tot=thesovereign] :dmg🔥 [egg=thesovereign] [spoiler=Interesting High Score Tables][url=https://subeta.net/games/battle/scores.php?enemy=206]Paramesian Buttwing Bomber[/URL] [url=https://subeta.net/games/battle/scores.php?enemy=210]Paramesian Recycle Beast[/URL] [/Spoiler][/Center]
Well that took forever, but finally got BQ's finished. It's crazy that we are still having this much lag! :(
You Won! You have defeated Prodigy
A LiL Anoid earned 3500 EXP Points!
sorry, wrong thread...
You have defeated Devora 5 times! You won a(n) Impossible token to use in the battle shop! You earned 13122 sP for beating Devora! Lion Universe earned 4724 EXP Points!
That was a painfully laggy fight lol.
Umbrus is being very stingy 💩
You Won!
You have defeated Crawbeast
Cynde earned 3500 EXP Points!
There's no way to prevent it in CSS; the battle JS doesn't scroll to a specific page element, it just scrolls 120 pixels down.
That said, here's an updated version of the code that moves the entire battle UI down to compensate, moves the "Battle Quests" button to the top as you asked, and fixes a couple of other issues I noticed poking around the rest of the battle pages.
Code
a[href^="challenge.php?act=battle&"] + a[href="challenge.php"] { display: none; }
a[href^="challenge.php?act=battle&"] .btn {
position: absolute; top: 25px; left: 16px;
width: calc(100% - 28px);
}
a[href$="battle/quest.php"] ~ p a[href^="challenge.php?act=battle"] .btn {
width: calc(50% - 16px - 14px);
}
.battle-menu + center a.button[href$="battle/quest.php"] {
position: absolute; top: 25px; left: calc(50% + 13px); right: 12px;
font-size: 14px; padding: calc(.375rem + 1px) calc(.75rem + 1px); line-height: 1.5; border-radius: 0.25rem;
}
.battle-menu + center { position: relative; }
.battle-menu + center > img:first-child { margin-top: 65px; }
-ui-main .battle-ui-arena { float: left; width: calc(100% - 325px); } -ui-main .battle-ui-controls { position: static; float: left; overflow: visible; }
, .end-game-btn { position: absolute; top: -46px; left: 15px; margin: 0; margin-top: 0 !important; width: calc(100% - 26px) !important; }
-ui-main { top: 185px; padding: 0 !important; }
In other news, is anyone willing to loan me a Maniacal Essence and/or Aftershocks Scroll? I bogged down after a few wins on Organ Collector, and although I haven't tried Devora yet I strongly suspect Gelatin Slayer isn't going to cut it. I can replace mods and have it back to you by midnight Subeta time (in case that's when we see the last wave).
cool I'll look into it.
also:
Trade Lot no collat needed. Ill set up a junk trade for you to use to send it back. (I didn't have an afteshocks scroll on hand, so I grabbed you a different one lol.)
[edit] The battle quest page worked perfectly.
Can these buttons on this page get moved up too: https://subeta.net/games/battle/quest.php "Start Level X" "Challenge X"
Also is there a way to turn the entire red error box for "Already in a battle" into a link to a link for to go to that battle.
[Center] [tp=thesovereign] :dmg🔥 [tot=thesovereign] :dmg🔥 [egg=thesovereign] [spoiler=Interesting High Score Tables][url=https://subeta.net/games/battle/scores.php?enemy=206]Paramesian Buttwing Bomber[/URL] [url=https://subeta.net/games/battle/scores.php?enemy=210]Paramesian Recycle Beast[/URL] [/Spoiler][/Center]
OK, one more revision. This moves the BQ buttons too. (It's kind of brittle, because the available selectors on that page aren't semantic, but at this point I don't expect anything to change for the forseeable future.) Making the 'continue the battle' link cover the entire alert box would be weird and awkward, but making it into a big button is easy, so I've done that. I have deliberately not put it in exactly the same place as the rest of the buttons, since it indicates you're out of flow.
SPOILER (click to toggle)
/* prep battle ui (and adjust for scrolldown */
-ui-main .battle-ui-arena { float: left; width: calc(100% - 325px); }
-ui-main .battle-ui-controls { position: static; float: left; overflow: visible; }
-ui-main { top: 185px; padding: 0 !important; }
/* Make Your Turn, See Results */ , .end-game-btn { position: absolute; top: -46px; left: 15px; margin: 0; margin-top: 0 !important; width: calc(100% - 26px) !important; }
/* prep battle results page */ .battle-menu + center { position: relative; } .battle-menu + center > img:first-child { margin-top: 65px; }
/* Fight This Opponent Again! / a[href^="challenge.php?act=battle&"] + a[href="challenge.php"] { display: none; } a[href^="challenge.php?act=battle&"] .btn { position: absolute; top: 20px; left: 16px; width: calc(100% - 28px); } / ... in combination with Battle Quests */ a[href$="battle/quest.php"] ~ p a[href^="challenge.php?act=battle&"] .btn { width: calc(50% - 16px - 14px); } .battle-menu + center a.button[href$="battle/quest.php"] { position: absolute; top: 20px; left: calc(50% + 13px); right: 12px; }
/* prep battle quest pages */ .battle-menu + .row:not(.w-100) { position: relative; } .battle-menu + .row:not(.w-100) > div:nth-child(2) { position: static; } .battle-menu + .row:not(.w-100) img[src$="npc_reischen.gif"], .battle-menu + .row:not(.w-100) > div:nth-child(2) { margin-top: 65px; }
/* Challenge Opponent, Start Level N */ .battle-menu + .row:not(.w-100) a[href$="battle/quest.php/start"].button, .battle-menu + .row:not(.w-100) a[href$="battle/quest.php/start"] .btn, .battle-menu + .row:not(.w-100) a[href^="/games/battle/challenge.php?act=battle"] .btn { position: absolute; top: 20px; left: 31px; width: calc(100% - 58px); }
/* You are already in a battle! */ .battle-menu + center > .alert-danger a[href$="battle.php"] { display: block; background-color: ; } .battle-menu + center > .alert-danger > b + br { display: none; }
/* style different button types to same size/shape */ .battle-menu + center a[href$="battle/quest.php"].button, .battle-menu + .row:not(.w-100) a[href$="battle/quest.php/start"].button, .battle-menu + .row:not(.w-100) a[href^="/games/battle/challenge.php?act=battle"] .btn, .battle-menu + center .alert-danger a[href$="battle.php"] { font-size: 14px !important; padding: calc(.375rem + 1px) calc(.75rem + 1px); line-height: 1.5; border-radius: 0.25rem; border: none; }
Thanks for the loan!
You Won! You have defeated Unstable Snow Fairy
Dieric earned 3500 EXP Points!
Done!
Wha, no wave 4 yet? Man that's gonna be tight. I work the weekend, so I'm gonna have to somehow stay awake long enough to get everything done. =/
Wanna know more about battling? ❤️ The Official Battle Guide v3.3 ❤️ Need to find books? 🌈 The Book Grind Guide v1.0 🌈