Loading. Please Wait... 
 |
 |
 |
The Official Hentaiverse Chat, Post your random thoughts or theorycrafts about HV |
|
Nov 20 2017, 14:31
|
Epion
Group: Gold Star Club
Posts: 3,350
Joined: 20-February 08

|
Pointless curiosity (pointless cause the chances of something like this happening are the same as someone finding 10 useful peerless drops in one encounter). If in the lottery EVERYONE participating states that they don't want the "Grand Prize", what happens? The logic would be an empty space in the place of the winner, but i can't picture that happening to be honest. Was this ever answered?
|
|
|
Nov 20 2017, 14:42
|
Cleavs
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07

|
QUOTE(Epion @ Nov 20 2017, 13:31)  Was this ever answered?
afaik no, but i guess you may be right...
|
|
|
Nov 20 2017, 15:08
|
Ass Spanker
Group: Gold Star Club
Posts: 4,198
Joined: 25-July 12

|
QUOTE(Epion @ Nov 20 2017, 20:31)  Pointless curiosity (pointless cause the chances of something like this happening are the same as someone finding 10 useful peerless drops in one encounter). If in the lottery EVERYONE participating states that they don't want the "Grand Prize", what happens? The logic would be an empty space in the place of the winner, but i can't picture that happening to be honest. Was this ever answered?
Shit now I'm curious. I guess Snowflake gets the Peerless.
|
|
|
|
 |
|
Nov 20 2017, 15:23
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
QUOTE(Epion @ Nov 20 2017, 13:31)  Pointless curiosity (pointless cause the chances of something like this happening are the same as someone finding 10 useful peerless drops in one encounter). If in the lottery EVERYONE participating states that they don't want the "Grand Prize", what happens? The logic would be an empty space in the place of the winner, but i can't picture that happening to be honest. Was this ever answered?
I bet for the prize defaulting to user 0. Except there is no user 0, so the lottery page and the equip's popup would show an empty space, if not outright resulting in an error page. But yeah, pointless. Even a crap leather is still a dream for a beginner with one tiny ticket. This post has been edited by decondelite: Nov 20 2017, 15:23
|
|
|
|
 |
|
Nov 20 2017, 18:01
|
Tenboro

|
QUOTE(Epion @ Nov 20 2017, 13:31)  If in the lottery EVERYONE participating states that they don't want the "Grand Prize", what happens?
It just skips that drawing and shows "Nobody" as the winner. The equip will, somewhat randomly, end up in the equipment shop.
|
|
|
Nov 21 2017, 04:36
|
jacquelope
Group: Members
Posts: 10,456
Joined: 28-July 15

|
LOL who keeps dropping figurines in the item shop? Fluttershy is sitting there, unwanted (IMG:[ invalid] style_emoticons/default/laugh.gif)
|
|
|
Nov 21 2017, 14:41
|
f4tal
Group: Members
Posts: 2,662
Joined: 10-January 13

|
At some point I have thought "why one need to scroll the statistics pane to see all his stats, when we can just o rearrange all stats in the two columns". Well, I tweaked CSS a little and result was... "doubtable". (IMG:[ invalid] style_emoticons/default/unsure.gif) What do you think? This post has been edited by f4tal: Nov 21 2017, 14:45
|
|
|
|
 |
|
Nov 21 2017, 14:50
|
Cleavs
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07

|
QUOTE(f4tal @ Nov 21 2017, 13:41)  At some point I have thought "why one need to scroll the statistics pane to see all his stats, when we can to just rearrange all stats in two columns". Well, I tweaked CSS a little and result was... "doubtable". (IMG:[ invalid] style_emoticons/default/unsure.gif) What do you think? if any, i'd see well ACC and Crit on the same line. also, on "vitals": i'd put HP, MP and SP on the same column, and MP/SP regen on the next column. basically, just put a blank filler where now MP is should do the trick. "defense" seems fine. "compromise" too. on "specific mitigation", maybe all elementals on the left and all physicals on the right? void is always zero, so either move it on a new column or hide it. in case you hide void, would it be possible to have three columns? "spell damage" seems fine. elementals on the left and holy/dark on the right (to reflect the above changes) may be viable as well, but only a trivial thing. three columns may be good here too. "effective primary stats", uh... again a three-column thing, perhaps? STR/DEX on left, END/AGI on center, INT/WIS on right...
|
|
|
|
 |
|
Nov 21 2017, 15:16
|
clarkiest
Group: Members
Posts: 1,335
Joined: 28-December 12

|
QUOTE(f4tal @ Nov 21 2017, 14:41)  What do you think?
Well, I don't have that wide of screen. Hell, I don't even have enough height I must scroll down to finish transaction at bazaar. So, I don't quite need it. But for those who will find it useful, I would like to use flexbox-grid a-la pinterest since some of those stats (like specific mitigation) are not divisible by four, thus, not so pretty. However, I found that those element are not nested, but at the same level in DOM. They're only differentiable by div class. This would make the work a bit more complicated. So..., if you want to count it as a CSS exercise, I wouldn't recommend the work. Oh, I just found that there's two div with stats_page class. you would find it easier if you put it side by side.
|
|
|
|
 |
|
Nov 21 2017, 17:56
|
f4tal
Group: Members
Posts: 2,662
Joined: 10-January 13

|
QUOTE(Scremaz @ Nov 21 2017, 15:50)  ...
What about this? (IMG:[ invalid] style_emoticons/default/smile.gif)  QUOTE(clarkiest @ Nov 21 2017, 16:16)  Well, I don't have that wide of screen. Hell, I don't even have enough height I must scroll down to finish transaction at bazaar.
Try that script
responsive_stats.txt ( 5.16k )
Number of downloads: 18Works like this: That script has both "new stats window" and "adapt scrolling panes for window's height"It is not "prettiest" solution ever, but the whole game is one big "absolute positing" - it has nested absolute after nested absolute after div with pre-defined width and height and margin - and so no, it just makes my head go around. QUOTE(clarkiest @ Nov 21 2017, 16:16)  However, I found that those element are not nested, but at the same level in DOM. They're only differentiable by div class. This would make the work a bit more complicated. So..., if you want to count it as a CSS exercise, I wouldn't recommend the work. CSS allows some to make that job easier with some ":nth-child(xxx)"-selectors. Not the trickiest thing, but, yes, very monotonous and routine. QUOTE(clarkiest @ Nov 21 2017, 16:16)  Oh, I just found that there's two div with stats_page class. you would find it easier if you put it side by side. Placing them side by side is actually making things weirder and worse - that just not enough place to put all mitigation, spell damage, attributes and so on to make things look nice (IMG:[ invalid] style_emoticons/default/sad.gif)
|
|
|
|
 |
|
Nov 22 2017, 06:57
|
Cryosite
Group: Members
Posts: 553
Joined: 29-August 17

|
QUOTE(f4tal @ Nov 21 2017, 07:56)  Try that script
Trying it out. So far, I like it a lot. Will have a better idea after today's arena runs and I go through selling off my trash drops and perhaps messing with the character page after earning a pile of exp.
|
|
|
Nov 22 2017, 07:17
|
clarkiest
Group: Members
Posts: 1,335
Joined: 28-December 12

|
QUOTE(f4tal @ Nov 21 2017, 17:56)  It is not "prettiest" solution ever, but the whole game is one big "absolute positing" - it has nested absolute after nested absolute after div with pre-defined width and height and margin - and so no, it just makes my head go around
Much appreciated. Thank you. QUOTE(f4tal @ Nov 21 2017, 17:56)  CSS allows some to make that job easier with some ":nth-child(xxx)"-selectors. Not the trickiest thing, but, yes, very monotonous and routine.
"monotous and routine." Right. You convey it better than I do.
|
|
|
Nov 22 2017, 15:38
|
clarkiest
Group: Members
Posts: 1,335
Joined: 28-December 12

|
I like to think that I'm not poor credit wise..., but but but...., 100m for first bid? Is this peerless gauntlet all over again?
(Your 50k per peerless bid did not count, Scremaz)
|
|
|
Nov 22 2017, 15:49
|
reality_marble
Group: Gold Star Club
Posts: 1,475
Joined: 31-August 13

|
clark kentest it was nero-arcueid who is rich ppl so 100m it is expecteds friendless radians of iceberg and lighting went or 50m and 80m on wts searchs so will see who will make next bid because 100m seems chip wish was luck like tim (=①ω①=)frigid and bassara nekked also gets lots of legends drop but they are nearly all followed by a (IMG:[ invalid] style_emoticons/default/dry.gif) but are sure he is just not storefront (づ ◕‿◕ )づ ✧ ⊂(´• ω •`⊂) ? who puts thing on auction for other ppl that don't want to deal with baka western who not speak moon?
|
|
|
Nov 22 2017, 15:51
|
Cleavs
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07

|
pretty sure it'll go higher. we still have to hear from doracra, for example
|
|
|
Nov 22 2017, 16:13
|
lololo16
Group: Gold Star Club
Posts: 2,889
Joined: 5-March 12

|
QUOTE(reality_marble @ Nov 22 2017, 10:49)  wish was luck like tim (=①ω①=)frigid and bassara nekked also gets lots of legends drop but they are nearly all followed by a (IMG:[ invalid] style_emoticons/default/dry.gif) (IMG:[ invalid] style_emoticons/default/tongue.gif) this was very funny
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|