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

    • Thank you for the reply. I know that this issue is due to L2 being so old. I was just wondering if there was an external way to fix the UI scaling. Like a patch or some settings.
    • Bro the game is so old it doesn't have a native option to scale the UI like in modern MMOs
    • Dear players, From April 19 to April 27 inc., the Bonus Start event will be active. It’s designed to help new and low-level characters get started more easily.   All characters that meet one of the following conditions: — created less than 3 days ago (regardless of level), — currently level 20 or below, — created during the event period, will receive upon login: — 10 sets of buff scrolls (phys or mage, depending on class), — 10 packs of +50% Drop/Spoil runes (2 hours each), — 10 packs of +50% Exp runes (2 hours each). Characters between level 21 and 30 will receive upon login: — 6 sets of buff scrolls, — 6 packs of +50% Drop/Spoil runes (2h each), — 6 packs of +50% Exp runes (2h each).   Event items will be removed approx. 09.05.2025 Server rates will be increased to x2.25. Take this chance to start your journey with ease or bring an old hero back into the fight — it’s the perfect time to test your strength! Open Beta Test is started!  Helper cats are waiting in towns — talk to them to receive the necessary equipment and level up your character. Siege Schedule:  - April 13 at 16:00 (GMT+2) – Innadrile Castle - April 14 at 20:00 (GMT+2) – Bandit Stronghold - April 15 at 20:00 (GMT+2) – Devastated Castle 📌 During the OBT, players who report bugs will receive CoL:   - 1 CoL for each reported staticmeshes bug (e.g., walking through textures, stairs, etc.) - 2 CoL or more for server-related issues (depending on severity) You can report bugs on the forum. The Open Beta Test will run approximately until April 15 at 23:00 (GMT+2). Your activity and feedback will help us improve the game.   Download links: Download client | Download updater 
    • begin if (user.dead) then begin delay(555); Engine.GoHome(rtCastle); print('User dead, going to castle..') end; end.  
    • Hello everyone. Long time no see. I've been trying to play L2 on my 4k monitor, however the UI is extremely small.  I checked around the internet and couldn't find a guide on how to keep the resolution high and the UI size a bit bigger. I either get small UI + full resolution (correct resolution of monitor), or normal sized UI but resolution set to full HD (which doesn't really look good on a 4k screen). Adjusting scaling on display settings doesn't change the UI just the text on L2. Does anyone know a way to increase the UI size only and keeping the screens resolution same (4k) ? I'll share a screenshot as an example, and it 's not even full screen mode. https://freeimage.host/i/3cvPVnI  
  • Topics

×
×
  • Create New...