Super late, but rawr. Modified patch file attached to this post.
(Leave enable_extra_bonus as 2 for this to work)
Right now it works with up to 90 bonus effects, but it's easy to edit it to allow for more if you need to. First 30 bonuses in the db/extra_bonuses.txt file apply to the EXTRA_BONUS variable, next 30 bonuses apply to EXTRA_BONUS2, next 30 apply to EXTRA_BONUS3. Make sure you leave all the blank {} lines, otherwise it'll mess things up since it relies on the empty bonuses to know where the next variable starts.
Inside conf/battle/player.conf:
extra_bonus_count1: 30 // EXTRA_BONUS
extra_bonus_count2: 30 // EXTRA_BONUS2
extra_bonus_count3: 30 // EXTRA_BONUS3
That sets how many lines it'll count for each variable, that's just random optimizing in case you use less than 30 each. I'm sure it barely makes a difference but I'm tired and it seemed like a good idea at the time so leave me alone. </3 You can probably just leave them at 30 I guess, I dunno. As a note, even if you set it to less than 30, the EXTRA_BONUS2 variable will still start from the 31st bonus line, so don't erase the empty {} lines or anything. This just tells the server to skip to the next variable once it hits the max amount for the current one.
The EXTRA_BONUS variables use those bitwise number things that moneymuch mentioned, so when you set the variables it's like...uh...
1 = first bonus line
2 = second bonus line
4 = third bonus line
8 = fourth bonus line
etc.
6 = 4+2 = second and third bonus lines
7 = 4+2+1 = first, second and third bonus lines
etc.
Holy crap I'm so tired...this is the worst explanation ever.
Anyways yeah. Don't hate pl0x, I know I could have done it better but I'm too tired/lazy to really care, and as long as it works I'm happy. :x
(Almost guaranteed that I'll forget to ever check this for replies, but uh...yeah...)
Extra_Bonuses.patch