Replies

Oct 14, 2021 4 years ago
Don't toy with
Roses
User Avatar
Gremlin

I'm glad 😊

Now that I'm more clued up on battling I'm looking forward to any wars, bring 'em on 💪

[font=georgia]CW Shop | CW Thread | CW Pings 🌹 Collector of ❤️s 🌹[/font] [tot=Roses]

Oct 14, 2021 4 years ago
Paramnesia
THESOVEREIGN
User Avatar
Captain Beatd0wn

Back on neopets we used to set up user run 1p wars all the time, they aren't super difficult to set up.

Especially since I have a feeling that staff might be more supportive of someone writing like scraping script to update results, or there might even be a way to do it through the API if thats still active.

[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]

Oct 14, 2021 4 years ago
Kalkatak
is custom made
User Avatar
Tarrant

+1 for the Ice Gelly war!! 😂 😂

@ Roses Yup - those buttons are just so tiny Dx I end up deselecting my scroll when I try to hit a freezing one all the time :K

@ Wolfmyth Gosh I'm blind xD Happy Birthday!! Hope you had a great day!! 🎉

I simply had to finish all the CSS ideas I had, EVEN THOUGH they turned out to be a bit of a nightmare Don't get me wrong - I love our programmers, but if I ever see another piece of inline-css I think I'll scream 😂 No wonder they're trying to recode the entire site; this stuff is messy

random battle-related custom css First off, if you want something to only work on a phone, put the CSS between this like so: (at symbol)media only screen and (max-width: 992px) {

PHONE ONLY CSS GOES HERE

} I have a large res phone so I went with 992px, 729, or 600 are good for smaller screens Make sure that the @ media CSS goes UNDER your normal CSS for the page, or the normal CSS will probably override it

[spoiler=Training Page] Puts the training buttons on separate lines, aligns them to opposite sides, and adds space - to reduce fat finger incidents input.btn[name="train_normal"] { display: block; margin: 1em auto 0 2px; } input.btn[name="train_auto"] { display: block; margin: 1em 2px 0 auto; } input.btn[name="train_auto"] +br { display: none; }

Makes the stat selection dropdown not go outside the box (a tiny fix) select[name="stat"] { width: 100% !important; }

Weapon & Scroll Set Pages Adds a line under the weapons in your set, but not under the Edit button -sortable .sixteen.wide.column { border-bottom: 1px solid black; } -sortable .sixteen.wide.column:nth-last-child(1) { border-bottom: none; }

Limits the scrolls to 8 per row on the scroll set page -sortable > .col-1, -sortable + .row > .col-1 { -ms-flex: 0 0 calc(100% / 8); flex: 0 0 calc(100% / 8); max-width: calc(100% / 8); }

The Pre-Battle Page (or whatever you'd call it) Makes all the boxes have sharp corners ('cos I'm totally OCD and it was bugging me) .ui.segment, , { border-radius: 0px !important; -webkit-border-radius: 0px !important; }

Fixes some squashing issues with the pet selection box, which is a complete PAIN to work with 'cos it's a table -_- I hate tables.... { overflow-x: none; } table td { width: 25%; padding: 10px 2px 2px !important; vertical-align: top; text-align: center; word-break: break-word; } img { max-width: 100%; height: auto !important; } Really long names will break onto the next line instead of overlapping

Makes the weapon and scroll images normal size again img, img { max-width: 100%; width: unset !important; height: unset !important; }

Makes it so you can click anywhere in the box under each set (where it says 'Tier X' or 'XXX AP'), and it will select it, 'cos the little dot is hard to tap on a phone label, label { display: block; line-height: 3em; margin-bottom: 0; } .bottom, .bottom { padding: 0px 3px; } You can increase the line-height number (3em) to make it taller

Puts 4 weapons on each line, and 6 scrolls on each line .ui.grid > .three.wide.column { width: 25%; margin: 10px 0 0; } .ui.grid > .three.wide.column { width: calc(100% / 6); margin: 10px 0 0; }

Increases the height of the scrolling 'select weapons' box, and makes it properly display 4 on each line. Long words will break onto the next line. Also added vertical padding to help with fat finger problems { font-size: 0px; max-height: 400px !important; } div { width: 25% !important; padding: 10px 3px 0px !important; font-size: initial; word-break: break-word; }

And finally, the biggest pain - the actual battle page. The default layout of this page is... weird, which makes altering it a pain... I can see why I've never found custom CSS for it before. There are !important all over because the code wouldn't work without them, even though the custom CSS should override the site. IDK why it isn't -_-

the battle ui 'Fixes' the layout, so it cooperates better. Then removes the height limit so it doesn't have a scroll bar (duel scrolling is yuck) .battle-ui-arena { display: inline-block; width: 60%; height: 100%; } .battle-ui-controls { display: inline-block; width: 40%; vertical-align: top; height: 100%; margin-bottom: auto; } -ui-main { height: auto !important; min-height: 700px; }

Reduced the space under the headers a bit .battle-title { margin-bottom: 5px !important; }

Spaces the Battle commentary out better - Less empty space. Standardizes the space in-between weapon blurb. Unfortunately there is no way to distinguish between our text and the opponent's :( Also put the damage and healing totals in bold. .battle-commentary { margin: 15px 0 0 !important; padding: 0px 3px !important; } , { width: 20% !important; padding: 5px !important; } p:nth-last-child(1), p:nth-last-child(2), p:nth-last-child(1), p:nth-last-child(2) { font-weight: bold; } { width: 60% !important; padding: 0 5px; } br { display: none; } p { margin: 1.5em 0; }

I have the , width set to 25% on my phone, and the width to 50%, like so: , { width: 25% !important; } { width: 50% !important; }

Reduces some empty space on the right, increases the height of the scroll + potion boxes a bit, and adds some space between the items (fat fingers again) .battle-select { padding: 10px 5px !important; } .choices-box { height: 200px !important; } .potion-choice, .spell-choice { padding-bottom: 5px; }

Makes the See Results button the same size as the Turn button .end-game-btn { width: 80%; }

[/spoiler] I'll probably continue tweaking it, but I'm happier already... and it's time for bed :P Do whatever with the code - I don't mind ;) and you can ping me if some bit of it got horribly broken when I copied and pasted xD

[edit]

i win - no more hitting the autotraining button by mistake xD

Oct 14, 2021 4 years ago
METROID
has been EXTERMINATED
User Avatar
Havoc

I vaguely remember Pirates vs Islanders, that was before I got into battling, so i missed out. D: I'd love to do a team battle event where you pick a side and see who wins! We need something to do. It feels like it's been ages since we've had anything besides the usual Gelatin War for a boss fight.

[flower=Metroid]

Wanna know more about battling? ❤️ The Official Battle Guide v3.3 ❤️ Need to find books? 🌈 The Book Grind Guide v1.0 🌈

Oct 14, 2021 4 years ago
Don't toy with
Roses
User Avatar
Gremlin

Just a small achievement, but just beat The Wolf in Granny's Clothing in BQs for the first time 😝

I don't really remember Pirates vs Islanders anymore, but I most definitely wasn't battle-ready then D:

[font=georgia]CW Shop | CW Thread | CW Pings 🌹 Collector of ❤️s 🌹[/font] [tot=Roses]

Oct 14, 2021 4 years ago
Oh My Shinwa, we thought
Wesker
was dead
User Avatar
Verdugo

Who needs T12, am I right?

Oct 14, 2021 4 years ago
Evil
would tap that
User Avatar
Nicole Richie

If I can ever get my hands on a , i'd be down with T10 life :p.

Oct 14, 2021 4 years ago
Don't toy with
Roses
User Avatar
Gremlin

Whoop, whoop, beat Deadroot in BQs for the first time too! (After too many attempts xP)

Share your secrets 😝 My Gremlin is tier 10 (but almost 11) .

[font=georgia]CW Shop | CW Thread | CW Pings 🌹 Collector of ❤️s 🌹[/font] [tot=Roses]

Oct 14, 2021 4 years ago
Evil
would tap that
User Avatar
Nicole Richie

The and are a godesend to the T10s. I can do so much more with them now.

Oct 14, 2021 4 years ago
Don't toy with
Roses
User Avatar
Gremlin

Ice King just visited, managed an extra win 😁 You Won! You have defeated Ice King 7 times! You earned 53144 sP for beating Ice King! Gremlin earned 3645 EXP Points! Ice King drops: Ice Bow Ghostly Ice Figurine Feli Ice Figurine Ice Bombs Ice Bombs

Thanks for the info! :) Unfortunately, I do not have those (':

By some luck I'm on level 29 in BQs now, don't think I can get further though 🙃 You Won! You have defeated Flamagia Gremlin earned 1300 EXP Points! Head back to the Battle Quest headquarters to finish up this quest! Because this was level 28 you earned 1300 experience!

Still happy cos that's the furthest we've gotten ^^

[font=georgia]CW Shop | CW Thread | CW Pings 🌹 Collector of ❤️s 🌹[/font] [tot=Roses]

Oct 15, 2021 4 years ago
Walrus
is Darksided!
User Avatar
BUSINESS

I have both if you ever want to borrow! :"D

You'll make through all 30 before you know it! Just gotta get lucky with who you get matched up with, haha. Unstable Snow Fairy at level 30 is suuuuper easy.

🍵 sticker wl 🍵 art by ❤️ 🍵 🌼 🌺 🌻 🌷 🌸 💐 [flower=walrus] 💐 🌸 🌷 🌻 🌺 🌼

Oct 15, 2021 4 years ago
Damon
is a demon
User Avatar
Evee

You Won!

You have defeated Menecuda

Cynde earned 3500 EXP Points!

Oct 15, 2021 4 years ago
Don't toy with
Roses
User Avatar
Gremlin

You're too good to me (': When we get the Spider Lady I may ask for some help then ❤️

I got Snake Eyes and then Crawbeast (on a skip) this time on level 29 and couldn't beat them 😢 I keep gradually getting a little further though, one day Gremlin will make it through ^^ Looking forward to the Unstable Snow Fairy 💪

[font=georgia]CW Shop | CW Thread | CW Pings 🌹 Collector of ❤️s 🌹[/font] [tot=Roses]

Oct 15, 2021 4 years ago
Go home
Julie
you're drunk
User Avatar

time. Battle Quest


Forum Art by
Signature Art by

Oct 15, 2021 4 years ago
Yer a wizard
Wolfmyth
User Avatar
Haneul

Thank you! It was a good day!

EDIT: I just wanna leave this here....how we all feel waiting for a Gelly War, the Morostide Challengers....a plot....

Oct 15, 2021 4 years ago
DefJamRecords
is lagging
User Avatar
Loot

New high

Total Damage: 26388

Need these, please hit me up!

Oct 15, 2021 4 years ago
extremist
does not get outside
User Avatar

You Won! You have defeated Unstable Snow Fairy

Corona earned 3500 EXP Points!

Oct 15, 2021 4 years ago
Evil
would tap that
User Avatar
Nicole Richie

Keep it coming :) - I feel like there's a lot of QoL custom css we could add to the BC.

Is it possible to fix the Battle Quest page when it shows you which challenger is up. If you click the "Challenger Javir" link...it preselects the pet. But if you click the much larger and easier image of the opponent....it's not selected. Is there a way to just expand the button to cover the image? I'm all about efficiency to motivate me to do these quests :p

this is what im talking about
Level 7/30 It's time for you to face Javir! [Insert Blue Button "Challenger Javir" here]

Oct 15, 2021 4 years ago
Oh My Shinwa, we thought
Wesker
was dead
User Avatar
Verdugo

Aw but T11 has all the fun weapons. If I ever got my hands on the staff, it would go straight into my wardrobe LOL

You see, what had really happened was...

Oct 15, 2021 4 years ago
Evil
would tap that
User Avatar
Nicole Richie

Hahhh - gimmie a minute I got a pic coming.

Also....I think it was you and maybe that were talking about if it was even possible to win with a zero strength pet....well challenge accepted XD it came to me last night....so

DERP was born!

You Won! You have defeated Buttwing Bomber 1 time! You earned 1000 sP for beating Buttwing Bomber! DERP earned 39 EXP Points!

Level: 6 Strength: 0 Defense: 15 Speed: 15 Health: 41 Intelligence: 8

Not practical...but possible :p

Please log in to reply to this topic.