Jewels

Beerus

Vassal
Customer
hello friends, does anyone know where the effect in client of this jewel is present?
 

Attachments

  • Screenshot_2.webp
    Screenshot_2.webp
    1.8 KB · Views: 87
i don't understand the problem from your comment, what do you want to find?
this is a jewel that equips in brooch slot, and it may possibly not be present on server side...

if you are looking for in client side:
Code:
!unpacked\AdditionalItemGrp_Classic.txt
item_begin    id=47688    has_ani=0    include_item={}    max_energy=-1    lookchange=0    cloakhide=0    cloakmeshtype=0    armor_hide=0    item_end

!unpacked\AdditionalSoulshotEffect.txt
effect_begin    ItemClassID=47688    AttackEffect=[LineageEffect2.jw_soul_black_atk]    AttackCriticalEffect=[LineageEffect2.jw_soul_black_atk]    effect_end

!unpacked\Armorgrp_Classic.txt
 item_begin    tag=1    object_id=47688    drop_type=0    drop_anim_type=3    drop_radius=2    drop_height=5    drop_texture={{[dropitems.drop_sack_m00];{[dropitemstex.drop_sack_t00]}}}    icon={[icon.bm_jewel_ssdmg_high_lv1_lavianrose];[None];[None];[None];[None]}    durability=-1    weight=5    material_type=0    crystallizable=0    related_quest_id={}    color=5    is_attribution=0    property_params=0    icon_panel=[icon.etc_material_lv1]    complete_item_dropsound_type=[dropsound_complete_misc]    inventory_type=1    body_part=21    m_HumnFigh={{[None]};{[None]}}    m_HumnFigh_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_HumnFigh={{[None]};{[None]}}    f_HumnFigh_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_DarkElf={{[None]};{[None]}}    m_DarkElf_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_DarkElf={{[None]};{[None]}}    f_DarkElf_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_Dorf={{[None]};{[None]}}    m_Dorf_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_Dorf={{[None]};{[None]}}    f_Dorf_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_Elf={{[None]};{[None]}}    m_Elf_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_Elf={{[None]};{[None]}}    f_Elf_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_HumnMyst={{[None]};{[None]}}    m_HumnMyst_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_HumnMyst={{[None]};{[None]}}    f_HumnMyst_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_OrcFigh={{[None]};{[None]}}    m_OrcFigh_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_OrcFigh={{[None]};{[None]}}    f_OrcFigh_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_OrcMage={{[None]};{[None]}}    m_OrcMage_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_OrcMage={{[None]};{[None]}}    f_OrcMage_add={{{[None]};{{0;-1}}};{[None]};[None]}    m_Kamael={{[None]};{[None]}}    m_Kamael_add={{{[None]};{{0;-1}}};{[None]};[None]}    f_Kamael={{[None]};{[None]}}    f_Kamael_add={{{[None]};{{0;-1}}};{[None]};[None]}    mertheia={{[None]};{[None]}}    mertheia_mesh_add={{{[None]};{{0;-1}}};{[None]};[None]}    fertheia={{[None]};{[None]}}    fertheia_mesh_add={{{[None]};{{0;-1}}};{[None]};[None]}    NPC={{[None]};{[None]}}    NPC_add={{{};{}};{};[None]}    attack_effect=[LineageEffect.p_u002_a]

!unpacked\ItemName-eu_Classic.txt
item_name_begin    id=47688    name=[Greater Ruby]    additionalname=[Lv. 1]    description=[When equipped, increases Soulshot and Beast Soulshot damage by 20% and P. Atk. By 9%. Effect does not stack with additional jewels of the same type. Equipping various Greater Jewels will grant additional effects.]    popup=-1    default_action=[action_equip]    use_order=99    name_class=-1    color=5    Tooltip_Texture=[None]    is_trade=1    is_drop=1    is_destruct=1    is_private_store=1    keep_type=7    is_npctrade=0    is_commission_store=0    item_name_end

!unpacked\ItemStatData_Classic.txt
item_begin    object_id=47688    pDefense=0    mDefense=0    pAttack=0    mAttack=0    pAttackSpeed=0    pHit=0.0    mHit=0.0    pCritical=0.0    mCritical=0.0    speed=0    ShieldDefense=0    ShieldDefenseRate=0    pavoid=0.0    mavoid=0.0    property_params=0    item_end

!unpacked\item_baseinfo_Classic.txt
item_baseinfo_begin    id=47688    default_price=0    is_locked=0    item_baseinfo_end

if it does not spawn in inventory then you need to register it on server-side/data/items.
take an example of another or similar brooch jewel for instance.
in this case i found a similar to the one you talk about:

HTML:
    <armor id="70455" name="Ruby (Lv. 5)">
        <set name="crystal_type" value="NONE"/>
        <set name="dropable" value="false"/>
        <set name="icon" value="icon.etc_talisman_i01"/>
        <set name="sellable" value="false"/>
        <set name="tradeable" value="false"/>
        <set name="type" value="NONE"/>
        <set name="weight" value="5"/>
        <equip>
            <slot id="BROOCH_JEWEL"/>
        </equip>
        <skills>
            <skill id="59150" level="5"/>
        </skills>
    </armor>
 
AttackEffect=[LineageEffect2.jw_soul_black_atk]

LineageEffect2.jw_soul_black_atk This is the name of effect you can find more of the effects inside the client and choose the one you like and set it on the jewel you want.
 
AttackEffect=[LineageEffect2.jw_soul_black_atk]

LineageEffect2.jw_soul_black_atk This is the name of effect you can find more of the effects inside the client and choose the one you like and set it on the jewel you want.
Apparently the configuration already exists. But the effect does not appear when using SoulShot. Do you have any idea how to activate it?

effect_begin ItemClassID=70456 AttackEffect=[LineageEffect2.shot_A_atk] AttackCriticalEffect=[LineageEffect2.shot_A_cr] effect_end
effect_begin ItemClassID=70457 AttackEffect=[LineageEffect2.shot_A_atk] AttackCriticalEffect=[LineageEffect2.shot_A_cr] effect_end
effect_begin ItemClassID=70458 AttackEffect=[LineageEffect2.jw_soul_yellow_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_yellow_atk] effect_end
effect_begin ItemClassID=70459 AttackEffect=[LineageEffect2.jw_soul_blue_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_blue_atk] effect_end
effect_begin ItemClassID=70460 AttackEffect=[LineageEffect2.jw_soul_red_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_red_atk] effect_end
effect_begin ItemClassID=71373 AttackEffect=[LineageEffect2.jw_soul_red_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_red_atk] effect_end
effect_begin ItemClassID=71374 AttackEffect=[LineageEffect2.jw_soul_red_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_red_atk] effect_end
effect_begin ItemClassID=71375 AttackEffect=[LineageEffect2.jw_soul_red_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_red_atk] effect_end
effect_begin ItemClassID=71376 AttackEffect=[LineageEffect2.jw_soul_red_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_red_atk] effect_end
effect_begin ItemClassID=71377 AttackEffect=[LineageEffect2.jw_soul_black_atk] AttackCriticalEffect=[LineageEffect2.jw_soul_black_atk] effect_e
 
Back
Top