Sorry, another question.
For The diligence Bonus, it says "exept special scrolls". Do the 20% scroll from renegades (3all stat 5 Att) count as special?
2012-10-16, 02:32 AM (This post was last modified: 2012-10-31, 07:39 AM by Tukkun.)
Not sure if this is new / still relevant, but I used an AEE purchased in the Homecoming shop, and it gave me +1 Ambition, +3 Willpower and +5 Diligence.
Tukkun Wrote:Not sure if this is new / still relevant, but I used an AEE purchsaed in the Homecoming shop, and it gave me +1 Ambition, +3 Willpower and +5 Diligence.
Tukkun Wrote:Not sure if this is new / still relevant, but I used an AEE purchsaed in the Homecoming shop, and it gave me +1 Ambition, +3 Willpower and +5 Diligence.
Dark Link Wrote:How long is "a while"? Cause I sure as hell didn't get any of that when I AEE'd my Top and Bot on my DS.
I doubt 2-star would give the trait bonuses.
I don't have any screenshots, but I do remember getting the traits when I AEE'd my Reverse Aeas Hands on my Bishop (back before the Legends update), and also getting traits when I AEE'd my Legendary Dragon Majesty on my Mercedes.
Yugidude Wrote:Sorry, another question.
For The diligence Bonus, it says "exept special scrolls". Do the 20% scroll from renegades (3all stat 5 Att) count as special?
Special scrolls mean Chaos, AEE, clean slates, and the 50% pink scrolls. I'm pretty sure every other scroll works - Azwan, 20% pinks, and the renegade scrolls for sure (given the # of ppl I know who have tried to perfect their canes and the math that results from this).
Aflac Wrote:Special scrolls mean Chaos, AEE, clean slates, and the 50% pink scrolls. I'm pretty sure every other scroll works - Azwan, 20% pinks, and the renegade scrolls for sure (given the # of ppl I know who have tried to perfect their canes and the math that results from this).
CiberRed Wrote:what is the best way to get willpower without doing PQ's?
I can do the Quest "John's Last Present" and get 400 exp each time you repeat this? :f6:
You can't repeat the quest. What you can do, however, is PQ until you get around 490 willpower, then turn in the quest for an extra 400 willpower, which is almost 900.
Chameleonic Wrote:I got the red "you cannot gain any more exp" line as well when I tried to use one for ambition, so I kept a couple for the next day. When I used them the next day when my daily ambition was 0 it didnt increase. So I'm not sure what is going on with them.
What I noticed is if you, say, gain 490 Insight for the day then start using your Insight Potions (+5), it won't be recorded immediately, therefore you have a small period where you can go over the limit of cap before it catches on.
I just tested everything now since I was curious, and the numbers this picture...
match the numbers in the table on the original post. And the numbers in that table match the numbers generated by that formula.
2013-02-21, 10:37 PM (This post was last modified: 2013-02-22, 02:43 AM by Kuraitou.)
MountLag Wrote:Are you sure?
I just tested everything now since I was curious, and the numbers this picture...
match the numbers in the table on the original post. And the numbers in that table match the numbers generated by that formula.
The table is correct, but the formula doesn't seem to give me the proper results:
Could be an implementation issue, I'll try it with a different language when I have time. (It's probably a stupid mistake that I missed.)
Implementation
Code:
traitExpReq :: Integer -> Integer
traitExpReq = round . e where
roundFrac = fromIntegral . round
e 0 = 20
e n = roundFrac (e (n - 1) * c) where
c | n >= 1 && n < 10 = 1.300
| n >= 10 && n < 20 = 1.100
| n >= 20 && n < 30 = 1.030
| n >= 30 && n < 70 = 1.015
| n >= 70 && n < 100 = 1.003
| otherwise = error "Out of range"