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

    • https://prnt.sc/Bkkc0ShGXv9m https://prnt.sc/-JFLvZXsn27A
    • Hello guys want to sell adena in L2 Reborn Signature x1  Stock =14kk good price 
    • Hi guys, I have the following problem, I want to set up two servers on the same dedicated server and I can't.   L2jacis 409 Linux Server. The first gameserver has the following configuration: # ================================================================ # Gameserver setting # ================================================================ # This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave * Hostname = 190.25.103.103 # Bind ip of the gameserver, use * to bind on all available IPs. GameserverHostname = * GameserverPort = 7777 # The Loginserver host and port. LoginHost = 127.0.0.1 LoginPort = 9014 # This is the server id that the gameserver will request. RequestServerID = 1 # If set to true, the login will give an other id to the server (if the requested id is already reserved). AcceptAlternateID = True UseBlowfishCipher = True # ================================================================ # Database informations # ================================================================ URL = jdbc:mariadb://localhost/server1 Login = server1 Password = server1 I configured the second gameserver like this:   # ================================================================ # Gameserver setting # ================================================================ # This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave * Hostname = 0.0.0.0 # Bind ip of the gameserver, use * to bind on all available IPs. GameserverHostname = * GameserverPort = 7788 # The Loginserver host and port. LoginHost = 127.0.0.1 LoginPort = 9014 # This is the server id that the gameserver will request. RequestServerID = 2 # If set to true, the login will give an other id to the server (if the requested id is already reserved). AcceptAlternateID = True UseBlowfishCipher = True # ================================================================ # Database informations # ================================================================ URL = jdbc:mariadb://localhost/server2 Login = server2 Password = server2 apart from having tested 0.0.0.0 on the second gameserver I also tried 127.0.0.1 In both cases I see the two servers in the login when I log in, but I try to enter the one with the lowest ping and it kicks me out. The other server always appears with ping 9999 and I try to enter but it doesn't do anything and it freezes the login so I have to log in again. The hexids are in their respective folders. For server 1, it has its hexid inside the gameserver config folder, and I checked that the hexid id is the same id, for example id 1 in the gameserver is also id1 for server 1, and hexid 2 has its hexid 2 for server 2. The server ports are open and listening when I turn on both gameservers. I really don't know what could be wrong. If you could give me some help I would appreciate it. Excuse my English.
    • We have both old channels from 2006-2009 with the 3rd verification function enabled, and new ones.   For availability, please contact us below: Link - Telegram Link - Facebook WhatsApp - Click here to go to WhatsApp chat
    • You can contact me on skype: niedziolek50
  • Topics

×
×
  • Create New...