Welcome, Guest. Please login or register.
Did you miss your activation email?
November 29, 2024, 02:33:23 am *

Login with username, password and session length
  Show Posts
Pages: [1] 2
1  General Category / Suggestions / Re: Broken Stuff Repair Shop v2.0 on: March 14, 2017, 11:10:49 am
I completed UC2 on my druid and as part of my reward I was deleveled to 52! Hailing Level Up Wench fixed it.
2  General Category / Updates / Re: Our New GM and Announcements on: March 12, 2017, 01:05:20 am
Congratulations Rent!
3  General Category / General Discussion / Re: How to set up MQ2 Auto Login on: March 05, 2017, 11:15:49 pm
It appeared to be empty lines in the ini  Undecided
4  General Category / Suggestions / Re: Broken Stuff Repair Shop v2.0 on: March 05, 2017, 01:14:07 am
The effect "Increase All Skills Damage Modifier" on Ultimate Charm and Earring of the Brutal Ages does not stack. The reason is spell effect ID 185 (SE_DamageModifier) only uses the highest modifier. A possible fix is changing EoBA to use spell effect ID 459 (SE_DamageModifier2) which is additive with 185.

I did a search through the spell file to check if using 459 would conflict with anything else and did not find anything.

If this is changed then there will be some significant changes to DPS. Godtank helped research this so I will use him as an example of the impact it will have.
GT does max crit of ~5.4m with no damage modifier bonuses. If he equips EoBA 50 that increases to ~16.4m. If he also equips UC3 it remains the same. If EoBA and UC3 stack I expect his max crit to increase to ~19.7m.

Thanks again GT!
5  General Category / General Discussion / Re: How to set up MQ2 Auto Login on: March 04, 2017, 08:09:23 pm
I talked to Thoruz about this last night and the issue has me confused as his ini appears to be correct  Undecided Thoruz send me your ini if you like and I can check it more carefully. Make sure you remove usernames/passwords from if you send it.
6  General Category / Suggestions / Re: Item Stack Sizes on: January 08, 2017, 05:05:04 pm
Thanks Akka!
7  General Category / Suggestions / Item Stack Sizes on: January 06, 2017, 01:12:12 am
Just curious about what people think of the current stack sizes for plat bags/chests/inks/sls/stone of impatience etc.
I would love to see everything brought up to 100 simply for conserving inventory/bank slots.
Opinions?
8  General Category / Updates / Re: EZ Update 6-7-2016 on: June 07, 2016, 06:20:15 pm
Thanks Akka! I appreciate this correction.
9  General Category / Updates / Re: Donations Offline on: March 21, 2016, 09:35:56 pm
How to donate:
10  General Category / Updates / Re: Double Weekend 3/4-3/7 on: March 01, 2016, 06:06:12 pm
Telling everyone I know to leave me alone this weekend.
Looking for excuses.

Tell them your prolapse is 'playing up' again.
11  General Category / Updates / Re: Double Weekend 3/4-3/7 on: March 01, 2016, 04:43:11 pm
Just finished plastic lining the room.
12  General Category / User Interfaces / Re: Custom EZ HUD mod on: March 01, 2016, 04:41:43 pm
This is pretty damn cool. I have not played with mq2hud but feel motivated to after seeing this. I have macros that can report this stuff normally.
13  General Category / Quest and Guides / Re: Mask of Experience: Math, numbers and despair. on: October 13, 2015, 01:08:56 pm
LOL I fail >< I amended the post to say Mask of Experience instead...
14  General Category / Quest and Guides / Mask of Experience: Math, numbers and despair. on: October 13, 2015, 07:07:28 am
I wrote some code to calculate Mask of Experience costs. I am fairly confident that it is accurate but please point out any mistakes.

Mask (0) : 0 ~0%
Mask (50) : 50,000 ~0%
Mask (100) : 100,000 ~0%
Mask (150) : 350,000 ~1%
Mask (200) : 600,000 ~2%
Mask (250) : 1,100,000 ~4%
Mask (300) : 1,600,000 ~7%
Mask (350) : 2,350,000 ~10%
Mask (400) : 3,100,000 ~13%
Mask (450) : 4,100,000 ~18%
Mask (500) : 5,100,000 ~22%
Mask (550) : 6,350,000 ~28%
Mask (600) : 7,600,000 ~33%
Mask (650) : 9,100,000 ~40%
Mask (700) : 10,600,000 ~46%
Mask (750) : 12,350,000 ~54%
Mask (800) : 14,100,000 ~62%
Mask (850) : 16,100,000 ~71%
Mask (900) : 18,100,000 ~80%
Mask (950) : 20,350,000 ~90%
Mask (1000) : 22,600,000 ~100%


Code:
import math
import sys
sys.setrecursionlimit(2000) # Hacks because Python derps at 1k recursion depth.

def solve(pLevel):
    def _solve(pLevel):
        # The end of the road.
        if pLevel == 0:
            return 0
        # Odd ball numbers for 0-100
        if pLevel <= 100:
            return 1000 + _solve(pLevel - 1)
        # Horrible code just to confuse you and save on lines of code.
        return 5000 * math.floor(((pLevel) if pLevel % 100 != 0 else (pLevel -1)) / 100) + _solve(pLevel - 1)
    return _solve(pLevel)

# List comprehension because ninjas.
L = [x*50 for x in range(21)]
aaMax = solve(1000)
for i in L:
    aa = solve(i)
    print("Mask (" + str(i) + ") : " + format(aa, ",d") + " ~" + str(int((aa / aaMax) * 100)) + "%")


EDIT: /facepalm, the original post said RoA instead of Mask of Experience. Blame the lack of sleep :p
15  General Category / General Discussion / Re: Server being retarded on: October 11, 2015, 08:52:23 am
Also not able to connect to any server :/
Pages: [1] 2
TinyPortal v1.0 beta 4 © Bloc