Non-DPS Set Optimizer - Help Fill In Gear

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » FFXI » General » Non-DPS Set Optimizer - Help Fill In Gear
Non-DPS Set Optimizer - Help Fill In Gear
 Lakshmi.Elidyr
Offline
Server: Lakshmi
Game: FFXI
user: elii
Posts: 911
By Lakshmi.Elidyr 2022-08-15 23:14:56
Link | Quote | Reply
 
May or may not be correct, or enough data. Will need some checking, and it is only in JSON format. Also added all the resources in JSON format for the most recent update.

Stats in JSON Format

If it doesn't help, I apologize. :(
Edit: Original link broke after I saved, so uploaded to github.
Edit: Looks like regex breaks on stuff with 'auto-' so need to fix that.

Example Data:
Code
{name :	Manasa Chasuble,
id : 10281,
DEF : 45,
MND : 13,
CHR : 13,
Magic Accuracy : 7,
Enhancing magic skill :	12,
Enfeebling magic skill : 12,
Adds \"Refresh\" effect	: Adds \"Refresh\" effect}

[+]
 Asura.Patriclis
Offline
Server: Asura
Game: FFXI
user: Patriclis
Posts: 389
By Asura.Patriclis 2022-08-24 11:07:23
Link | Quote | Reply
 
Lakshmi.Elidyr said: »
May or may not be correct, or enough data. Will need some checking, and it is only in JSON format. Also added all the resources in JSON format for the most recent update.

Stats in JSON Format

If it doesn't help, I apologize. :(
Edit: Original link broke after I saved, so uploaded to github.
Edit: Looks like regex breaks on stuff with 'auto-' so need to fix that.

Example Data:
Code
{name :	Manasa Chasuble,
id : 10281,
DEF : 45,
MND : 13,
CHR : 13,
Magic Accuracy : 7,
Enhancing magic skill :	12,
Enfeebling magic skill : 12,
Adds \"Refresh\" effect	: Adds \"Refresh\" effect}

This is really nice. How did you get this and is it complete with every piece of gear in the game?
[+]
 Ramuh.Austar
Offline
Server: Ramuh
Game: FFXI
user: Austar
Posts: 10457
By Ramuh.Austar 2022-08-24 11:25:02
Link | Quote | Reply
 
He has since updated it to the format my program uses in the link, and yes it does have every piece in the game. The only issues with the formatting are going to be any % signs or apostrophes in certain locations with the way python uses those in strings.

I am also upgrading it to take normal formulas, such as magic damage and drain/aspir, as well as cure ones to easily optimize those.
[+]
 Asura.Patriclis
Offline
Server: Asura
Game: FFXI
user: Patriclis
Posts: 389
By Asura.Patriclis 2022-08-25 13:47:46
Link | Quote | Reply
 
Ramuh.Austar said: »
He has since updated it to the format my program uses in the link, and yes it does have every piece in the game. The only issues with the formatting are going to be any % signs or apostrophes in certain locations with the way python uses those in strings.

I am also upgrading it to take normal formulas, such as magic damage and drain/aspir, as well as cure ones to easily optimize those.

Hmm, going through it, it does seem to be missing certain pieces of equipment.

Stuff that might not matter for your project mind you, but stuff I do care about for my own.

Example of this is the level 24 armor "Chainmail"
It only hast DEF:21 and no other stats... but I still want to include it.

Elidyr are you willing to share your process / the code you used to get these data files?

In the process of making one myself right now but it'd cut my work down if you have some usable code already for parsing out the item descriptions into json.
 Lakshmi.Elidyr
Offline
Server: Lakshmi
Game: FFXI
user: elii
Posts: 911
By Lakshmi.Elidyr 2022-08-25 15:38:37
Link | Quote | Reply
 
Asura.Patriclis said: »
Ramuh.Austar said: »
He has since updated it to the format my program uses in the link, and yes it does have every piece in the game. The only issues with the formatting are going to be any % signs or apostrophes in certain locations with the way python uses those in strings.

I am also upgrading it to take normal formulas, such as magic damage and drain/aspir, as well as cure ones to easily optimize those.

Hmm, going through it, it does seem to be missing certain pieces of equipment.

Stuff that might not matter for your project mind you, but stuff I do care about for my own.

Example of this is the level 24 armor "Chainmail"
It only hast DEF:21 and no other stats... but I still want to include it.

Elidyr are you willing to share your process / the code you used to get these data files?

In the process of making one myself right now but it'd cut my work down if you have some usable code already for parsing out the item descriptions into json.

Let me know if anything is missing and I can correct it. It is current on the github, but the parsing is finicky, and took a little trial and error, so if I need to update feel free to point out exactly which item it is.

Edit: I guess you meant the item is missing completely. I'll go back through and see where this may be happening and see if I can correct it so every item shows. It was not an intended scenario, even if it still works for his application.
 Asura.Patriclis
Offline
Server: Asura
Game: FFXI
user: Patriclis
Posts: 389
By Asura.Patriclis 2022-08-26 09:14:07
Link | Quote | Reply
 
Lakshmi.Elidyr said: »
Let me know if anything is missing and I can correct it. It is current on the github, but the parsing is finicky, and took a little trial and error, so if I need to update feel free to point out exactly which item it is.

Edit: I guess you meant the item is missing completely. I'll go back through and see where this may be happening and see if I can correct it so every item shows. It was not an intended scenario, even if it still works for his application.

I can't say for sure everything that's missing, but it seems like it's missing armor that doesn't have stats aside from defense.

Examples:
https://www.ffxiah.com/item/12832/bronze-subligar
https://www.ffxiah.com/item/12552/chainmail

Also "Bone Harness +1" is there (it has fire res and evasion)
But not "Bone Harness" which only has defense
https://www.ffxiah.com/item/12582/bone-harness
https://www.ffxiah.com/item/13716/bone-harness-1
[+]
 Lakshmi.Elidyr
Offline
Server: Lakshmi
Game: FFXI
user: elii
Posts: 911
By Lakshmi.Elidyr 2022-08-26 09:35:17
Link | Quote | Reply
 
Asura.Patriclis said: »
Lakshmi.Elidyr said: »
Let me know if anything is missing and I can correct it. It is current on the github, but the parsing is finicky, and took a little trial and error, so if I need to update feel free to point out exactly which item it is.

Edit: I guess you meant the item is missing completely. I'll go back through and see where this may be happening and see if I can correct it so every item shows. It was not an intended scenario, even if it still works for his application.

I can't say for sure everything that's missing, but it seems like it's missing armor that doesn't have stats aside from defense.

Examples:
https://www.ffxiah.com/item/12832/bronze-subligar
https://www.ffxiah.com/item/12552/chainmail

Also "Bone Harness +1" is there (it has fire res and evasion)
But not "Bone Harness" which only has defense
https://www.ffxiah.com/item/12582/bone-harness
https://www.ffxiah.com/item/13716/bone-harness-1

Okay will check in to this and update as needed. :)