Armor or weapon stat changes
Armor or weapon stat changes
I searched and could not find any info on this.
I play alone on a private local server.
I want to be able to adjust the stats of existing armor and weapons like damage and attack.
For example the Samurai AF equipment.
Does anyone know of a guide or be willing to create one.
Thanks it would be fun to adjust our favorite gear on these private servers.
I play alone on a private local server.
I want to be able to adjust the stats of existing armor and weapons like damage and attack.
For example the Samurai AF equipment.
Does anyone know of a guide or be willing to create one.
Thanks it would be fun to adjust our favorite gear on these private servers.
-
- Developer
- Posts: 539
- Joined: Sun Jul 22, 2012 12:17 am
Re: Armor or weapon stat changes
DMG and Delay are stored in item_weapons
Most other behavior is handled in item_mods, unless it's part of a script, or handled in the core.
Most other behavior is handled in item_mods, unless it's part of a script, or handled in the core.
Test Server: Hanekawa | Fantasy World: Naito
An occasionally updated list of what works
Bugs reports go here. | Project chat here.
Things I've found, but don't plan to work on.
An occasionally updated list of what works
Bugs reports go here. | Project chat here.
Things I've found, but don't plan to work on.
Re: Armor or weapon stat changes
I found how to modify basic items. But what about Rare/ex ones? I can't find them in item_weapon or anywhere else.
Re: Armor or weapon stat changes
Nvm... Navicat was only showing the first 1000 items of the table. Found them.
Re: Armor or weapon stat changes
I'm in the same situation. but I "play" to test the weapons/gear status.
So far I have found that most of them are broken, base player's status dont go up or down, attack stays the same along with defense. The main issue I'm having is how to correct them.
The file item_mods seems a bit unexplained on how to add the status bonuses or detritment status to gear/weapons.
So far I have found that most of them are broken, base player's status dont go up or down, attack stays the same along with defense. The main issue I'm having is how to correct them.
The file item_mods seems a bit unexplained on how to add the status bonuses or detritment status to gear/weapons.
Re: Armor or weapon stat changes
yes item_mods isn't straight forward but this is explained somewhere else in the forum and i might as well dump my text file here to make it easier
all you have to do is find the item number lets say you want to add stats to rusty dagger the ID is 16447, easy way to find id's go to www.ffxiah.com look for the item and in the address bar it will have the number.
then in item_weapons change the stats of 16447 to whatever you want that one is fairly self explanatory and then go into item_mods and add the itemid 16447 lets say you want to add attack so in the modId you add 23 and then how much attack you want you put in the value so it would look like this
16447 23 10 <- effectively adding 10 attack to a weapon, mind you the actual label in the game will not change you would have to do some .dat editing for that
all you have to do is find the item number lets say you want to add stats to rusty dagger the ID is 16447, easy way to find id's go to www.ffxiah.com look for the item and in the address bar it will have the number.
then in item_weapons change the stats of 16447 to whatever you want that one is fairly self explanatory and then go into item_mods and add the itemid 16447 lets say you want to add attack so in the modId you add 23 and then how much attack you want you put in the value so it would look like this
16447 23 10 <- effectively adding 10 attack to a weapon, mind you the actual label in the game will not change you would have to do some .dat editing for that
- Attachments
-
- item_mods.txt
- item_mods mod id's
- (7.42 KiB) Downloaded 566 times
Re: Armor or weapon stat changes
on my server thats my GM weapon so i basically have every stat up high, i rarely get hurt my Skillchains do from 23000-63000 damage
you are able to add the weaponskills from the relic weapons onto any weapon by putting the proper modid and value
you are able to add the weaponskills from the relic weapons onto any weapon by putting the proper modid and value
Re: Armor or weapon stat changes
Sorry to bump this post. I'm trying to play around on a private server (I mostly do apperance dat mods) but I was trying to increase some values on weapons/armors and it just isn't working D:
I've tried editing the item_mods.sql in notepad then doing the execute batch file to update it in Navicat
I've tried editing the values in Navicat but nothing changes
For example I changed this:
itemID: 11281 modID:1 value:200
I should get an increase of 200 def when I equip this body but I don't.
Any ideas? :/
I've tried editing the item_mods.sql in notepad then doing the execute batch file to update it in Navicat
I've tried editing the values in Navicat but nothing changes
For example I changed this:
itemID: 11281 modID:1 value:200
I should get an increase of 200 def when I equip this body but I don't.
Any ideas? :/
Re: Armor or weapon stat changes
did you restart the server after changes? did you make sure to commit the changes in navicat (usually the checkmark at the bottom)?
Re: Armor or weapon stat changes
.kjLotus wrote:did you restart the server after changes? did you make sure to commit the changes in navicat (usually the checkmark at the bottom)?
Ahhh ty. Nothing I read said anything about restarting the server. Here I was thinking I just needed to log out/in thanks it works now