Jump to content

Question

Posted

Hello guys so.

I have a problem with rebirth skills. I have create my own active skills for fighter && mage

but when i click on the npc for rebirth it gives me the skill but the skill not appears in my skills.

My Skill xml:

<skill id="9091" levels="3" name="Mage Force" >
  <table name="#mpConsume">100 210 500</table>
  <table name="#mAtkSpd">1.04 1.08 1.12</table>
  <table name="#mAtk">1.04 1.08 1.12</table>
  <set name="mpConsume" val="#mpConsume"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="reuseDelay" val="6000"/>
  <set name="hitTime" val="4000"/>
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <for>
    <effect name="Buff" time="1200" count="1" val="0">
      <mul order="0x30" stat="mAtk" val="#mAtk"/>
      <mul order="0x30" stat="mAtkSpd" val="#mAtkSpd"/>
    </effect>
  </for>
</skill>
<skill id="9092" levels="3" name="Fighter Force" >
  <table name="#mpConsume">100 210 500</table>
  <table name="#pAtkSpd">1.04 1.08 1.12</table>
  <table name="#pAtk">1.04 1.08 1.12</table>
  <set name="mpConsume" val="#mpConsume"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="reuseDelay" val="6000"/>
  <set name="hitTime" val="4000"/>
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <for>
    <effect name="Buff" time="1200" count="1" val="0">
      <mul order="0x30" stat="pAtk" val="#pAtk"/>
      <mul order="0x30" stat="pAtkSpd" val="#pAtkSpd"/>
    </effect>
  </for>
</skill>

 

config:
REBIRTH_MAGE_SKILL = 9091,1;9091,2;9091,3;

REBIRTH_FIGHTER_SKILL = 9092,1;9092,2;9092,3;

 

skillname dat:
9091	1	Mage Force	Increases M.Attack & Casting Speed. Effect 1.	none	none
9091	2	Mage Force	Increases M.Attack & Casting Speed. Effect 2.	none	none
9091	3	Mage Force	Increases M.Attack & Casting Speed. Effect 3.	none	none
9092	1	Fighter Force	Increases P.Attack & Attack Speed. Effect 1.	none	none
9092	2	Fighter Force	Increases P.Attack & Attack Speed. Effect 2.	none	none
9092	3	Fighter Force	Increases P.Attack & Attack Speed. Effect 3.	none	none

 

skillgrp dat:
9091	1	1	100	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9091	2	1	210	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9091	3	1	500	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	1	1	100	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	2	1	210	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	3	1	500	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10

 

So i have no errors.

Why the skills not appear? What is the problem?

10 answers to this question

Recommended Posts

  • 0
Posted

Did you sendSkillList() to refresh it ? You have to do it after addSkill or removeSkill. You probably already got the effect activated, it's just a visual glitch.

 

If sendSkillList() is already there, then your skill isn't correctly given/implemented.

  • 0
Posted

You should add the skills with your GM, to see if the problem is from the client side or from your rebirth system.

  • 0
Posted

Did you sendSkillList() to refresh it ? You have to do it after addSkill or removeSkill. You probably already got the effect activated, it's just a visual glitch.

 

If sendSkillList() is already there, then your skill isn't correctly given/implemented.

 

sendSkillList() exists.

 

Is there aproblemwith client then?

 

  • 0
Posted

I think you have not added the skill in your system.. (skillgrp, skillname-e)

skillname dat:
9091	1	Mage Force	Increases M.Attack & Casting Speed. Effect 1.	none	none
9091	2	Mage Force	Increases M.Attack & Casting Speed. Effect 2.	none	none
9091	3	Mage Force	Increases M.Attack & Casting Speed. Effect 3.	none	none
9092	1	Fighter Force	Increases P.Attack & Attack Speed. Effect 1.	none	none
9092	2	Fighter Force	Increases P.Attack & Attack Speed. Effect 2.	none	none
9092	3	Fighter Force	Increases P.Attack & Attack Speed. Effect 3.	none	none

 

skillgrp dat:
9091	1	1	100	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9091	2	1	210	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9091	3	1	500	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	1	1	100	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	2	1	210	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10
9092	3	1	500	400	1	4.000000	1	D	skill.su.1242	icon.skill1303	0	0	0	0	8	10

 

 

You should add the skills with your GM, to see if the problem is from the client side or from your rebirth system.

 

Already try that.

  • 0
Posted

So, is it from the client side or they work manually?

 

First i though it was because of active skills. But when i try to add them manually the problem remains.

I have post the client part of the skill, but maybe there is a mistake.

Can someone check the client part and tell me if something is wrong?

  • 0
Posted

First i though it was because of active skills. But when i try to add them manually the problem remains.

I have post the client part of the skill, but maybe there is a mistake.

Can someone check the client part and tell me if something is wrong?

 

It's better to make them passives.

 

Skillgrp:

 

9091	1	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9091	2	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9091	3	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	1	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	2	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	3	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1

  • 0
Posted

It's better to make them passives.

 

Skillgrp:

 

9091	1	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9091	2	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9091	3	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	1	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	2	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1
9092	3	2	0	-1	0	0.000000	0			icon.skill1303	0	0	0	0	-1	-1

I want it as active but..

Wtf, do you get any errors in gs console?

 

No errors. The skill is normally given to the player, i also can remove it from skill GM panel.

The only problem is that is not visible.

Guest
This topic is now closed to further replies.


  • Posts

    • 2 euros/h I will need you to mostly follow my main with 3 chars logged from same computer and respond to my messages. Payments daily via paypal. Estimated number of hours needed: 30 I basically need someone to help me boost my supports first 3 days of server's grand opening. Server is opening this Friday at 6pm Paris time and I need you until midnight on Friday and ~12h on Saturday and ~12h on Sunday. Add me on telegram if interested @nikola91ns
    • 📢 L2Elixir Open Beta Announcement Get ready! The Open Beta starts on Saturday, November 15th at 21:00 (UTC +2). Don’t miss it — follow the countdown on our official website! Now then, we present to you our OPEN BETA exclusive event:   Here’s how it works briefly: 1) An NPC named ‘The Judge’ will spawn in Giran for the first 30 minutes of the OPEN BETA. This NPC will spawn at exactly 21:00 UTC+2 on Saturday 15th November 2025. 2) Interact with this NPC and your master account will be given special privileges to obtain Legendary starter pack for all game accounts created. 3) Having spoken to the NPC will allow for all new characters to start with a legendary starter pack on the official launch day on 28th November 2025, 21:00 UTC+2. 4) ‘The Judge’ will reward the first 2 players and 2 more Random participants with a PREMIUM Account which will be activated on 28th November 2025!!! 4) Send message to @Ray on Forum or Discord with your Forum name to get Legendary Role on Discord! Good luck! Legendary starter pack:
    • Hello everyone!   The gates of Aden are opening, prepare for the ultimate adventure and claim your place among legends. Our server launch is getting closer.. Adventurers of Aden, the wait is over! On November 28th, 2025, a new era begins. Get ready to step into the epic world of Lineage 2, where legends are forged, battles are relentless, and glory awaits the brave. https://www.l2ertheia.eu/news:server-launch/
    • - New Features in Anosim https://anosim.net -   You can now share your numbers with others via a unique link - no need to give them access to your account! How to Share Number https://prnt.sc/K83lxOjS-Fyb   How to Revoke Accsess: https://prnt.sc/jkVIQS2lhxvA   --- --- --- --- --- --- --- New OTP / SMS Activation Locations: - USA  - Australia - Honduras - Kenia
    • How to Create Multi-Accounts For TikTok, Youtube, Gmail....   Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint.   MoMoProxy Integrate with Adspower Browser   Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged.   Youtube Video On How to Create TikTok Accounts  https://youtu.be/ZUihXj7BO4M  
  • 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