seban20 Posted July 27 Posted July 27 Hi all i need your help, sry if the topic dont be here. Feel free to move.... Im making set bonus for amors, and works... but the icon dont display. Its like doesnt exist, but the effect of the skill set works. Im working in Lineage II Interlude, L2J datapack_rev_1132. I make the skill following the way of the Wooden Set, here the example: Server Side: 3500-3599.xml : Wooden Set Quote <?xml version="1.0" encoding="utf-8"?> <list> <skill id="3500" levels="1" name="Wooden Set"> <!-- Description(s): Increases P. Def. and MaxHP. --> <set name="target" val="TARGET_SELF"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_PASSIVE"/> <set name="castRange" val="-1"/> <set name="effectRange" val="-1"/> <for> <mul order="0x30" stat="pDef" val="1.02"/> <!-- P. Def. +2% --> <add order="0x40" stat="maxHp" val="41"/> <!-- HP +41 --> </for> </skill> </list> navicat armorsets.sql: Wooden Set Quote id chest legs head gloves feet skill_id shield shield_skill_id enchant6skill 1 23 2386 43 0 0 3500 0 0 0 armorsets.csv: Wooden Set Quote # id;chest;legs;head;gloves;feet;skill_id;shield;shield_skill_id # Wooden Breastplate set (heavy) 1;23;2386;43;0;0;3500;0;0;0 Client Side: /system/ skillgrp.dat | Wooden Set Quote skill_id skill_level oper_type mp_consume cast_range cast_style hit_time is_magic ani_char desc icon_name extra_eff is_ench ench_skill_id hp_consume UNK_0 UNK_1 3500 1 2 0 -1 0 0.00000000 0 icon.armor_t06_u_i00 0 0 0 0 -1 -1 /system/ skillname-e.dat | Wooden Set Quote id level name description desc_add1 desc_add2 3500 1 a,Wooden Set\0 a,Increases P. Def. and Max HP.\0 a,none\0 a,none\0 Thats all i get for reffer from Wooden Set, so i copy same and do for bronze. Of course creating new id. Then, this is the code i use for make the bronze set: Server Side: 9900-9999.xml : Bronze Set Quote <?xml version="1.0" encoding="utf-8"?> <list> <skill id="9997" levels="1" name="Bronze Set"> <!-- Description(s): Increases P. Def. and MaxHP. --> <set name="target" val="TARGET_SELF"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_PASSIVE"/> <set name="castRange" val="-1"/> <set name="effectRange" val="-1"/> <for> <mul order="0x30" stat="pDef" val="1.02"/> <!-- P. Def. +2% --> <add order="0x40" stat="maxHp" val="41"/> <!-- HP +41 --> </for> </skill> </list> navicat armorsets.sql: Bronze Set Quote id chest legs head gloves feet skill_id shield shield_skill_id enchant6skill 52 26 34 0 0 0 9997 0 0 0 armorsets.csv: Bronze Set Quote # id;chest;legs;head;gloves;feet;skill_id;shield;shield_skill_id # Bronze Set (heavy) 52;26;34;0;0;0;9997;0;0;0 Client Side: /system/ skillgrp.dat | Bronze Set Quote skill_id skill_level oper_type mp_consume cast_range cast_style hit_time is_magic ani_char desc icon_name extra_eff is_ench ench_skill_id hp_consume UNK_0 UNK_1 9997 1 2 0 -1 0 0.00000000 0 icon.armor_t06_u_i00 0 0 0 0 -1 -1 /system/ skillname-e.dat | Bronze Set Quote id level name description desc_add1 desc_add2 9997 1 a,Bronze Set\0 a,Increases P. Def. and Max HP.\0 a,none\0 a,none\0 What im doing wrong? :c The skills works, but the skill not show in passive habilities.
seban20 Posted July 27 Author Posted July 27 1 minute ago, seban20 said: Hi all i need your help, sry if the topic dont be here. Feel free to move.... Im making set bonus for amors, and works... but the icon dont display. Its like doesnt exist, but the effect of the skill set works. Im working in Lineage II Interlude, L2J datapack_rev_1132. I make the skill following the way of the Wooden Set, here the example: Server Side: 3500-3599.xml : Wooden Set navicat armorsets.sql: Wooden Set armorsets.csv: Wooden Set Client Side: /system/ skillgrp.dat | Wooden Set /system/ skillname-e.dat | Wooden Set Thats all i get for reffer from Wooden Set, so i copy same and do for bronze. Of course creating new id. Then, this is the code i use for make the bronze set: Server Side: 9900-9999.xml : Bronze Set navicat armorsets.sql: Bronze Set armorsets.csv: Bronze Set Client Side: /system/ skillgrp.dat | Bronze Set /system/ skillname-e.dat | Bronze Set What im doing wrong? :c The skills works, but the skill not show in passive habilities. i try to put none in the spaces of skillgrp, but dont work too :c
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now