How to edit Stats/effects for Gear and Items

Newbie Spellweaver
Joined
Jan 26, 2023
Messages
91
Reaction score
99
Thought i share my little project, this was made for learning purposes, might be of use for some.
I've used Trophies for this, but i highly assume it works similar for every item.
You can trace back the steps i took, by simply comparing the original to this.

Do not forget to make a backup, before you change things.



1 - How to edit Stats/effects for Gear and Items - RaGEZONE Forums


Server (/root/hxsy/Data/db/) S_Item.ini
Search for ID "12457" & "12458" and replace it with the code below

Code:
12457|I00060||G00004||||-|39|12|536871680||-1|1||||6||||40931|||||1|1|917||17|$53$-|41980|41981|41982|41983||||75000|25000|25000|75000|25000|25000||||||||||||||||||||||
12458|I00177||G00004||||-|39|12|536871680||-1|1||||6||||40932|||||1|1|917||17|$53$-|41980|41981|41982|41983||||75000|25000|25000|75000|25000|25000||||||||||||||||||||||

Server (/root/hxsy/Data/db/) S_Enchant
Search for ID "40931" & "40932" and replace it with the code below

Code:
40931|I00060||||-|1|0|2052|-100||||||2043|300|||||||||||||||||||||||||||||||0||||||||||-||-|||
40932|I00177||||-|1|0|2033|50|50|||||2051|200|||||||||||||||||||||||||||||||0||||||||||-||-|||


Client (/data/db/) t_item & c_item
Search for ID "12457" & "12458" and replace it with the code below

Code:
12457|I00060||G00004||||-|39|12|536871680||-1|1||||6||||40931|||||1|1|917||17|$53$-|41980|41981|41982|41983||||75000|25000|25000|75000|25000|25000||||||||||||||||||||||
12458|I00177||G00004||||-|39|12|536871680||-1|1||||6||||40932|||||1|1|917||17|$53$-|41980|41981|41982|41983||||75000|25000|25000|75000|25000|25000||||||||||||||||||||||

Client (/data/db/) c_enchant
Search for ID "40931" & "40932" and replace it with the code below

Code:
40931|I00060||||-|1|0|2052|-100||||||2043|300|||||||||||||||||||||||||||||||0||||||||||-||-|||
40932|I00177||||-|1|0|2033|50|50|||||2051|200|||||||||||||||||||||||||||||||0||||||||||-||-|||

Client (/data/db/) t_enchant
Search for ID "40931" & "40932" and replace it with the code below

Code:
40931|Shard of Toto's Water Blade|Normal Attack Speed +100%
CRIT DMG +300%||Shard of Toto's Water Blade||
40932|Asheara's Frozen Soul Crystal|Detail-DMG +50%
Movement Speed +200%||Asheara's Frozen Soul Crystal||


Once you restart the Server, you should have the effects in place.
Use this to create the items "/ci 12457" "/ci 12458"
Make sure to copy the entire entry for the Items, they have multiple rows (atleast for me)
Here is an example:

Code:
40933|I00074||||¥¾¯Çªº¤C±m¦Ð¤ò|1|0|2081|||262||||2038|239|239||||||||||||||||||||||||||||||0||||||||||´£°ª³t«×È262ÂI
´£°ª©Ò¦³ªvÀø®ÄªG239ÂI||¥¾¯Çªº¤C±m¦Ð¤ò|||
 
Last edited:
1 - How to edit Stats/effects for Gear and Items - RaGEZONE Forums


A different version with more overpowered effects. Proceed as above, but change the lines with this:

Code:
40931|I00060||||-|1|0|2052|-150||||||2097|300||||||2046|250|250|250|250|250|250|||||||||||||||||||0||||||||||-||-|||
40932|I00177||||-|1|0|2033|150|150|||||2051|250||||||2043|300||||||||||||||||||||||||0||||||||||-||-|||

Code:
40931|Shard of Toto's Water Blade|Normal Attack Speed +150%
PEN +300%
Elemental Damage +250%||Shard of Toto's Water Blade||
40932|Asheara's Frozen Soul Crystal|Detail-DMG +150%
Movement Speed +250%
Critical Damage + 300%||Asheara's Frozen Soul Crystal||

If you want even more, create the items with this behind:
Code:
/ci 12457 2121
/ci 12458 2131

12457/12458 = Base items
2121 = Nocturnal
2131 = Destroyer
(The Item created with the addition of 2121/2131 have a range, just recreate until you have one with high rolls)
 
Back