bugs

Forum > Bugs > Buffs extending past frame.
Reply To Thread (login)
Nosferatu [280]
2017-09-20 15:24:34
[6 years, 220 days ago]

I'm too lazy to search forums, though I think it had been brought up before.

How difficult would it be to extend it so it will include also the buffs, assuming you posses them all.

Pic for reference: https://i.imgur.com/zhHfA8b.png


 
Executed [88]
2017-09-20 15:25:31
[6 years, 220 days ago]

such a hoarder


 
Gpof2 [131]
2017-09-20 15:30:04
[6 years, 220 days ago]

Only two of the normal speed buffs, what a loser.


 
Nosferatu [280]
2017-09-20 16:19:30
[6 years, 220 days ago]

It ran out. I fixed it and made my bar worse, thanks Obama.


 
Ender [1]
Administrator
2017-11-19 15:22:22
[6 years, 160 days ago]

Fixed. It will now expand as needed (though it will retain its ~original size if the space isn't needed). I think it was the size it was because of the old, larger logo. I guess we'll need a more robust solution if/when more buffs are added.

Speaking of which, here are today's useless stats...

Number of bots per number of buffs (it's the 16th buff that started to straddle the border of the old fixed-size box):

mysql> select
    ->   buff_count,
    ->   count(bot_id) count
    -> from (
    ->   select
    ->     bot_id,
    ->     count(buff_id) buff_count
    ->   from buffs_bots
    ->   group by 1) foo
    -> group by 1
    -> order by 1 desc;
+------------+-------+
| buff_count | count |
+------------+-------+
|         18 |     5 |
|         17 |    13 |
|         16 |     8 |
|         15 |     3 |
|         14 |     4 |
|         13 |     4 |
|         12 |     9 |
|         11 |    12 |
|         10 |    30 |
|          9 |    36 |
|          8 |    93 |
|          7 |   246 |
|          6 |   664 |
|          5 |  1501 |
|          4 |  3078 |
|          3 |  6130 |
|          2 |  9068 |
|          1 | 35980 |
+------------+-------+

And the lucky members of the 18 buff club:

mysql> select
    ->   bot_id,
    ->   username
    -> from buffs_bots
    -> inner join bots on bot_id = bots.id
    -> group by 1
    -> having count(buff_id) = 18
    -> order by 1; 
+--------+------------+
| bot_id | username   |
+--------+------------+
|     58 | Nosferatu  |
|   3634 | Serpentine |
|  11679 | Drained    |
|  12265 | Cachexia   |
|  12266 | Moribund   |
+--------+------------+

 
Nosferatu [286]
2024-01-07 14:13:30
[110 days ago]

https://i.imgur.com/Xg9zXOQ.png

Can we fix it so the XP/Kudos bar also extends to the end...


 
Forum > Bugs > Buffs extending past frame.
Reply To Thread (login)