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?

Guest
This topic is now closed to further replies.



  • Posts

    • Hello, I'm working with custom Icons and noticed that you can use 64x64 icons and the client will handle them without problems in the Inventory and when you Drag them, they look HD so it's really cool, the problem starts when you move them to the shortcut bar, when they're placed there instead of rescaling the icon it just show the upper left corner (so it's 32x32 but showing only the part that fits in that space). I tried checking interface.u but can't find the line where the size for the icons in the shortcut bar are handled.   When in Inventory the item shows in a 32x32 size, if I use a 64x64 icon it re-scales so the icon looks great When dragging the item the image becomes 64x64 which looks pretty big, but it works good When placing the item in the shortcut bar only the top left of the icon is visible   Is there a way I can adjust the shortcut bar so that it re-scales the icon?
    • If you want to edit a large amount of entries in the L2 File-edit I recommend using excel, since both work with columns you can copy the entire file or just a few lines and paste it in excel and it will copy without problems, after you're done with editing you just select the cells and paste them in the .dat file making sure you're formatting correctly. I'm currently doing a massive edit on all gear and that's how i'm handling the .dat work
    • the logic is the "stacking" that is a filter if you use it then the item cannot co-exist (stack)
    • [Exclusive L2Gold Weekend Server] Available ONLY on Saturdays & Sundays – nowhere else, no other time ! Custom Armors (Dynasty, Apella) Custom Weapons (L2Gold Weapons) Custom Jewelry (L2Gold Jewelry) Custom Teleport System Custom AIO Buffer Custom Zones & NPCs Custom Raidboss … and much more waiting for you every weekend! This is not just another private server – it’s a limited-time battleground. When the weekend comes, everyone gathers in one place for the ultimate L2 experience. 👉 Online: Saturday–Sunday only 👉 Contact / Info: [https://www.facebook.com/profile.php?id=61578869175323]
    • ⏳ The price drops like sand slipping down in an hourglass.   📉 USA numbers are already at the lowest 💸 🌍 Next in line: Europe, Asia, and dozens of other countries.     All next week we’ll be actively working on lowering prices. The process has already started  soon costs will be much cheaper. 🔥 Get ready: the price drop will affect every country!   Website link — https://vibe-sms.net/ Our Telegram channel — https://t.me/vibe_sms
  • 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