faith baghs what Vegetto used according to his ancient thread on KI about it.
faith baghs what Vegetto used according to his ancient thread on KI about it.
The fomors are not that hard. A rdm can tank them and kill, but it's slow. Salvage is 120 minutes, you have time. You need /whm, so you need spell interruption gear for the NM itself. The advantage of RDM is that it can slow II and paralyze II the NM (bio II too, which would be preferable to dia).
If you're looking for the formulas, they're all on the wiki, however if you want it in code it should be something like this:
FinalSTR=BaseSTR+GearSTR+FoodSTR;
BaseAttack=(8+Skill+AttackFromJobTraits+AttackFrom Gear+floor(FinalSTR*1Hor2HMod))*BerserkMod;
if(BaseAttack*FoodAtkBonusPercent<AtkFoodCap)
{
FinalAttack=BaseAttack+floor(FoodAtkBonusPercent*B aseAttack);
}
else
{
FinalAttack=BaseAttack+FoodAtkCap;
}
Additionally, since you only specify attack bonus from main job there's no way to indicate whether it will be AB I, II, or IV.
Granted, it doesn't include Minuets, but that's presently outside the scope of your application.
is there a good EU ISO for FFXI I can download from anywhere? ._.
Done
Ok, then I was calculating the right way hmmm... Here's Pizza Sample :
DoneCode:if ($accuracy >= 400) { $accuracy += 40; if ($attack >= 250) $attack += 50; else $attack *= 1.20; } else { $accuracy *= 1.10; if ($attack >= 250) $attack += 50; else $attack *= 1.20; }![]()
Tbh, you could do without /WHM. /DNC would work just fine I'd imagine for removing DEF down. Would also give you alternate panic button heals.
As long as you recast Phalanx before it wears, keep Aquaveil up etc. I don't think it should be much of a problem killing them with any sub, although DNC and WHM would probably be best. Just get your fast cast up as much as you can.
What's the path of the reg key that needs changing? I was just about to uninstall NA FFXI because it won't accept my password, guy from POL said it was because I had the wrong version installed.
Changing a flag would be a fuckton easier than reinstalling a bazillion very scratched CDs.
I'm at work, so I can't look it up. Perhaps someone else knows?
If I remember right, its in the PlayOnline map in the registry, and you need to copy it and change it from NA to EU. Lemme see if I can google it.
edit: sorry, I can't find it right now :3 If no one's answered you by the time I get home I'll go through my reg keys and see if I can writeu p an explanation of it. There's certainly some guides out there already, so you should be able to follow them.
thanks for the help thus far!i did find this http://www.torrentreactor.net/torren...D-Backup-Discs
but now i dont want to uninstall what I've got just in case I can do a simple reg tweak.
No luck finding those guides yes mentioned... ; ;
Just trying to rearrange my moghouse for proper guild item moghancement.
I'm a cook, and I've set everything up to make wind my highest aura, and none of my furniture is above 9 (the amount of strength from the 150k item). However, I have all the nation flags out, and the Windurst one is wind elemental and also has 9 strength. If I put in the Cordon Bleu Set (9), What moghancement do I get? Cooking Skill +1 from the 9 CB or Conquest from the 9 Windy Flag?
Could it be a fixed point issue? Also why do you have 2 pairs of nested conditionals when it's only needs 2 independent ones? Try:
Note:Code:if ($accuracy >= 400) $accuracy += 40; else $accuracy = ($accuracy *1126) >> 10; if ($attack >= 250) $attack += 50; else $attack = ($attack * 1228) >> 10;
For accuracy, I'm assuming 10% = 102/1024. Therefore, 1.10 = (102+1024)/1024 = 1126/1024.
For attack, I'm assuming 20% = 204/1024. Therefore, 1.20 = (204+1024)/1024 = 1228/1024.
It seems to be working, I forgot I had STR and DEX from Sole Sushi when filling my form while testing lol @_@.
I'll look Pizza in an hour or so to make sure it's working fine. <<<<---- Pizza is also working.
I floored the results on Accuracy and Attack. Thank you.
Because I'm not a bright guy ?
Fixed this, Thank you.