MMOMinion

Full Version: Optimizing crafting Profiles - Need Testers!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
So I am looking for people to try and maximize the output of some profiles I wanna create and share soon.

Yet I wanna get the best out of those, so I want to have some guys basically testing those, and maybe telling me what they would change to make it better, if possible.

Just add me on Skype - saik19922 - and as soon as I got some people with those preferences I will start a Conversation and we can let the testing and optimizing begin ;)
To optimize craft, you really should use my "custom count" modification, it's really efficiant to copy hand made rotation. (And it s quicker to make them)
I will add you to skype

(Attached file : My custom count stuff and a profile for 3 star 40 dur token for lucis -need 442 hab and 398 cp)

Quick explain, in my custom count stuff, you have 3 custom counter, for each counter and each skill you have
custommin (Minimum score of the custom counter to make the skill proc)
custommax (Maximum score of the custom counter to make the skill proc)
customcounteradd (Add X to custom counter)
customcounterremove (Remove X to custom counter)

That way, for exemple, if you need for a 3 or 4 star to proc 2 ToT for the end of your rotation and each extra ToT will change an hasty touch to a basic touch, you can do something like that :
On ToT : customcounteradd = 1
On basic touch : custom min = 3, customcounterremove = 1
And you can later check on your skill if you have the required ToT.

An other way to use it is to priorize skill, i usually use my second custom counter for that :
For exemple :
Skill 1 : custommax = 1, customcounteradd =1
Skill 2 : custommax = 2, customcounteradd =2
Skill 3 : custommax = 4, customcounteradd =4
Skill 4 : custommax = 8, customcounteradd =8
Skill 5 : custommax = 16, customcounteradd =16

That way, each skill will execute on the definited order and just once. And for exemple, if you want ToT to proc beetween your 2 and 4 skill, you can add Tot : On Good, custommin = 2, custommax=8

Edit : I corrected few errors on the vanilla lua, added a 395 CP profile as requested by mp (the 398 CP will work a lot better btw).
Wow thats awesome, could you go into more detail about the custom feature? You said that the custom is a "score" Is that the durability or step # or a new unit you are using?
Nice but need NA version.
That should work with NA too. I dont think name in french in the profile matter, it use skill id.
which DoH is it for cause i'm trying to do CUL skill ids aren't matching
Can you post a screenshot of your skillbook after reloading skill ? I will compare to mine.
Anyway, it don't really matter now if skill id are not matching, because there is an array with specifics skill per jobs, it should fall back to it.
[Image: 42EuHFE.png]
All specific jobs skills have a matching table since the last patch, so that should work. (if you use my last update on the lua, because there were error on the original lua file)

Code:
SkillMgr.MatchingCraftSkills = {
    --Basic Skills
    ["Basic Synth"] =     {[8] = 100001, [9] = 100015, [10] = 100030, [11] = 100075, [12] = 100045, [13] = 100060, [14] = 100090, [15] = 100105 },
    ["Basic Touch"] =     {[8] = 100002, [9] = 100016, [10] = 100031, [11] = 100076, [12] = 100046, [13] = 100061, [14] = 100091, [15] = 100106 },
    ["Master's Mend"] =     {[8] = 100003, [9] = 100017, [10] = 100032, [11] = 100077, [12] = 100047, [13] = 100062, [14] = 100092, [15] = 100107 },
    ["Standard Touch"] =    {[8] = 100004, [9] = 100018, [10] = 100034, [11] = 100078, [12] = 100048, [13] = 100064, [14] = 100093, [15] = 100109 },
    ["Mend II"] =         {[8] = 100005, [9] = 100019, [10] = 100035, [11] = 100079, [12] = 100049, [13] = 100065, [14] = 100094, [15] = 100110 },
    ["Standard Synth"] =    {[8] = 100007, [9] = 100021, [10] = 100037, [11] = 100080, [12] = 100051, [13] = 100067, [14] = 100096, [15] = 100111 },
    ["Advanced Touch"] =    {[8] = 100008, [9] = 100022, [10] = 100038, [11] = 100081, [12] = 100052, [13] = 100068, [14] = 100097, [15] = 100112 },
    ["Observe"] =         {[8] = 100010, [9] = 100023, [10] = 100040, [11] = 100082, [12] = 100053, [13] = 100070, [14] = 100099, [15] = 100113 },
    
    ["Steady Hand"] =     {[8] = 244, [9] = 245, [10] = 246, [11] = 247, [12] = 249, [13] = 248, [14] = 250, [15] = 251 },
    ["Inner Quiet"] =     {[8] = 252, [9] = 253, [10] = 254, [11] = 255, [12] = 257, [13] = 256, [14] = 258, [15] = 259 },
    ["Great Strides"] =     {[8] = 260, [9] = 261, [10] = 262, [11] = 263, [12] = 265, [13] = 264, [14] = 266, [15] = 267 },
}

But you need Waste Not II to make it works.
(And i just see, there a small error on the profile, i will correct it, if you can put "17-Ouvrage de base" just one rank up (before hasty touch) it will work a little better)
alright thanks
Pages: 1 2