Jump to content

Recommended Posts

Posted (edited)

I used these files: [Manual] Create And Edit Skill.usk Lineage 2 - Interlude ◄√I®Us► and I added for Hi5.

You can edit the skill.usk file and lineageskilleffect.u

Download here: patch_Hi5_and_Interlude_L2VisualSkills

 

 

Edited by SGER@fjs
video preview
  • Like 1
  • Thanks 2
  • Upvote 1
  • 5 months later...
Posted (edited)

Virus Video tutorial die. I no have LineageSkillEffect.u only LineageEffect.u   I try on interlude

Edited by Aslam
Posted
38 minutes ago, Aslam said:

Virus Video tutorial die. I no have LineageSkillEffect.u only LineageEffect.u   I try on interlude

In a few hours I upload a demonstration. On how to use.

  • 1 year later...
  • 2 weeks later...
Posted
15 hours ago, StarSCreams said:

where can find LineageEffect script? for h5? i need to add some *.uc in your download LineageEffect is for interlude i thinkso

add?
that "LineageEffect.u" is only a reference to be able to open the LineageSkillEffect.u and compile

Posted (edited)

yes i know... i compiled LineageSkillEffects successfully, but i need add new LineageEffect i try to make new one for example Lineage2Effects to put inside Classes/my.uc but when try skill effect doesnt appear. only can hear sounds effects

 

add only new class inside LineageSkillEffects/Classes/l2_br_014_01_skill.uc

 

class l2_br_014_01_skill extends L2SkillEffect;

defaultproperties{
    Desc="New TextureEffect"
    SkillID=23021
    Begin Object Class=L2EffectEmitter Name=L2EffectEmitter0
        AttachOn=AM_Trail
        offset=(X=0.000000,Y=0.000000,Z=40.000000)
        bRelativeToCylinder=false
        ScaleSize=1.300000
        EffectClass=Class'Lineage2Effects.br_s_u006_lose'
        SimpleEffectClass=Class'Lineage2Effect.br_s_u006_lose_simple'
        BR_ForceLifeTime=3.500000
    End Object
    CastingAction(0)=L2EffectEmitter'L2EffectEmitter0'
    Begin Object Class=L2EffectEmitter Name=L2EffectEmitter1
        AttachOn=AM_Trail
        offset=(X=0.000000,Y=0.000000,Z=-0.500000)
        ScaleSize=1.000000
        EffectClass=Class'Lineage2Effects.br_s_u002_ca'
        SimpleEffectClass=Class'Lineage2Effect.br_s_u002_ca_simple'
    End Object
    CastingAction(1)=L2EffectEmitter'L2EffectEmitter1'
    Begin Object Class=L2EffectEmitter Name=L2EffectEmitter2
    End Object
    CastingAction(2)=L2EffectEmitter'L2EffectEmitter2'
}

 

And make new Lineage2Effects/Classes/br_s_u006_lose and br_s_u002_ca put in

 

and not work, but if i change Lineage2Effects -> LineageEffect work normally.

 

 

Edited by StarSCreams
Posted

I suppose your effect package is called "LineageElwynEffect.u"

so you change EffectClass=Class'Lineage2Effects.br_s_u002_ca'

to EffectClass=Class'LineageElwynEffect.my_effects'

and delete this "SimpleEffectClass" is not necessary

then you create a new .u with the name of "LineageElwynEffect" with ue2 (this is only for reference), so "LineageSkillEffects" stores the address of "LineageElwynEffect" in "EffectClass" and does not remain with the empty information

then you compile

Posted (edited)
On 4/27/2020 at 11:55 PM, SGER@fjs said:

I suppose your effect package is called "LineageElwynEffect.u"

so you change EffectClass=Class'Lineage2Effects.br_s_u002_ca'

to EffectClass=Class'LineageElwynEffect.my_effects'

and delete this "SimpleEffectClass" is not necessary

then you create a new .u with the name of "LineageElwynEffect" with ue2 (this is only for reference), so "LineageSkillEffects" stores the address of "LineageElwynEffect" in "EffectClass" and does not remain with the empty information

then you compile

 

thanks for reply,

i dont have problem with MyClass inside LineageSkillEffects

i have problem with MyClass inside Lineage2Effects.

 

You can tell me if this classes are corrects? i modify only new class name

 

LineageSkillEffect/Classes/l2_br_014_skill.uc

 

class l2_br_014_skill extends L2SkillEffect;

defaultproperties
{
     Desc="패배"
     SkillID=23021
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter0
         AttachOn=AM_Trail
         offset=(Z=40.000000)
         bRelativeToCylinder=False
         ScaleSize=1.300000
         EffectClass=Class'NewLineage2Effects.br_s_u006_lose'
         BR_ForceLifeTime=3.500000
         Name="L2EffectEmitter0"
     End Object
     CastingAction(0)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter0'
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter1
         AttachOn=AM_Trail
         offset=(Z=-0.500000)
         ScaleSize=1.000000
         EffectClass=Class'NewLineage2Effects.br_s_u002_ca'
         Name="L2EffectEmitter1"
     End Object
     CastingAction(1)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter1'
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter2
         Name="L2EffectEmitter2"
     End Object
     CastingAction(2)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter2'
}
 

NewLineage2Effects/Classes/br_s_u006_lose.uc

 

https://pastebin.com/B9stxmtQ

 

NewLineage2Effects/Classes/br_s_u002_ca.uc

 

https://pastebin.com/sDrCZHyh

 

when compile,  copy my new LineageSkillEffect and NewLineage2Effects in to the sytem folder, i try in devmode and only hear sounds

 

Thanks and sorry for post in this thread and thanks again with your time.

Edited by StarSCreams
Posted
2 hours ago, StarSCreams said:

class l2_br_014_skill extends L2SkillEffect;

defaultproperties
{
     Desc="패배"
     SkillID=23021
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter0
         AttachOn=AM_Trail
         offset=(Z=40.000000)
         bRelativeToCylinder=False
         ScaleSize=1.300000
         EffectClass=Class'NewLineage2Effects.br_s_u006_lose'
         BR_ForceLifeTime=3.500000
         Name="L2EffectEmitter0"
     End Object
     CastingAction(0)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter0'
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter1
         AttachOn=AM_Trail
         offset=(Z=-0.500000)
         ScaleSize=1.000000
         EffectClass=Class'NewLineage2Effects.br_s_u002_ca'
         Name="L2EffectEmitter1"
     End Object
     CastingAction(1)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter1'
     Begin Object Class=L2EffectEmitter Name=L2EffectEmitter2
         Name="L2EffectEmitter2"
     End Object
     CastingAction(2)=L2EffectEmitter'LineageSkillEffect.l2_br_014_skill.L2EffectEmitter2'
}

wait, that skill exists in Hi5.
why duplicate?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • 🌟 L2Avalon – Interlude Rework x20 – Grand Opening July 4! 🌟 📅 Server Launch: Open Beta: June 26, 18:00 GMT+3 Grand Opening: July 4, 2025 📦 Chronicle & Client: Reworked Interlude (based on latest High Five features) Custom launcher with up-to-date client support ⚔️ Rates & Progression: EXP/SP: Lv 1–39: x20 Lv 40–52: x15 Lv 52–60: x10 Lv 61–70: x8 Lv 71–75: x5 Lv 76–79: x4 → x3 Lv 80+: x2 Adena: x1 (subject to adjustment) Drop/Spoil/Raid Drop: x5 Quest Drop: custom Party Bonus: up to +290% EXP 🛠️ Core Features: Auto-loot (normal drops) Auto-learn skills up to level 75 High Five-style skill system with full rebalancing Passive MP regen: +1000 MP / 15s Inventory space: 150 slots Weight limit increased Auto CP/HP/MP potions Global chat from level 40 (!), offline shop (.offline), buff selling system (.sellbuff) 🔼 Class Progression: 1st & 2nd class: Free 3rd class: Kill 700 mobs → get 1 Giant Codex Subclass: Custom quest + 4 raid bosses + 1000 B-grade Crystals Noblesse: Either via Caradine's Letter (Lv 65+) or Noblesse box from raid bosses 🏪 NPC Shops & Support: GM Shop: Full D/C gear, Low B gear Luxury Shop: TOP B gear Donation Shop: Cosmetics, premium, etc. NPC Buffer: Save & load buff schemes (premium buffs for Premium Account) Mammon functions via NPC in Giran (unseal, augment, etc.) Offline Traders, Coin of Luck auction system Special blacksmiths and unique item services 💡 Why L2Avalon? Balanced seasonal x20 rates – smooth and long-term growth Quality-of-life systems for casual & hardcore players alike Custom skill system, refined raid rewards, and unique gear upgrades Active community, continuous development, and fair monetization Beta rewards & early start advantage 🔗 Useful Links: 🌐 Website: https://www.l2avalon.net 📘 Full Server Info: https://l2avalon-net.gitbook.io/info 💬 Discord: https://discord.gg/NbM2cXmAem 📝 Join the adventure this July! Prepare your characters during Beta and get rewarded at launch!  
    • You spent over a month calling a lot of people names. I get that you want to change, but it will take a lot more than this for me to believe its sincere. And honestly, for your apology to matter, I'd have to care enough to be offended in the first place.
    • we all love you very much Guytis💖 🤗
    • W/e u smoke there, i want aswell... life has been cruel all this time! Maybe it will help me
    • I would like to take this opportunity to publicly apologize to the following people:   @Acacia, @Victory, @Splicho, @ShadowNetwork, @l2gold2025, @SkyLord, @maneco, @F4sh10n, @Maxtor, @Celestine, @911reg, @Nightw0lf. @UnknownSoldier   If at any point my words, actions, or posts offended you, I sincerely apologize. I recognize that in the past there were moments of tension and unnecessary conflict, but today I want to leave all of that behind. From now on, I choose not to hold any grudges against anyone and to let go of everything that happened — from both sides. The path I want to follow in this community is one of collaboration, mutual respect, and growth. Thank you to those who are still contributing and sharing. Sincerely,   Guytis
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock