Issue with weapons
Issue with weapons
Certain weapons dont give buffs in stats like masamune and its +20 STR any reason why all the 75 gear procs stats
Re: Issue with weapons
Alot of newer weapons may not have stats in the database
Re: Issue with weapons
How would we add them or fix it
-
- Developer
- Posts: 539
- Joined: Sun Jul 22, 2012 12:17 am
Re: Issue with weapons
Why does nothing over 75 work? Officially, because it's post-RotZ, and most devs aren't interested in post-Abyssea content. The energy is better spent making the basics work.
How can you make stuff work? /evil hand wringing.
item_basic makes an item exist, period.
item_armor determines who can equip it, what level, what slot it goes into, and what it looks like
item_weapon determines weapon skill, dmg, a damage type, a delay, and multihit properties if applicable.
item_mods give it stats. Refer to /scripts/global/status.lua for values, and remember to convert from hex to decimal where applicable.
item_usable makes it usable if it's a charged item, but you still have to write a script so that the game knows what to do when it's used.
Keep in mind to server reset after database changes, etc. If you're not sure how all of that stuff works... pick a weapon that's implemented and does something similar, then look at how it was done in the database.
How can you make stuff work? /evil hand wringing.
item_basic makes an item exist, period.
item_armor determines who can equip it, what level, what slot it goes into, and what it looks like
item_weapon determines weapon skill, dmg, a damage type, a delay, and multihit properties if applicable.
item_mods give it stats. Refer to /scripts/global/status.lua for values, and remember to convert from hex to decimal where applicable.
item_usable makes it usable if it's a charged item, but you still have to write a script so that the game knows what to do when it's used.
Keep in mind to server reset after database changes, etc. If you're not sure how all of that stuff works... pick a weapon that's implemented and does something similar, then look at how it was done in the database.
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.
-
- Developer
- Posts: 707
- Joined: Sun Jul 22, 2012 12:11 am
Re: Issue with weapons
I'll add in also that weapons with latents will need an entry in item_armor so that they can be scripted.