How can apply some effects on character?

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
KGB1st
Posts: 230
Joined: Sat Jul 26, 2014 5:58 pm

How can apply some effects on character?

Post by KGB1st »

how I can apply effect, for example ressurection. on died characters' corpse, pc_body? Without using skill casting. Only effect on target..I tried many variants, but nothing to works. Is is possible to emit effect on some world position coord?
User avatar
maneco2
Initiates
Initiates
Posts: 664
Joined: Sat Aug 24, 2013 7:10 am

Re: How can apply some effects on character?

Post by maneco2 »

One example is this skill:

Code: Select all

<skill id="458" levels="1" name="Symbol of Energy">
One example skill GROUND:

Code: Select all

<set name="targetType" val="GROUND" />
And try create Npc:

Code: Select all

		<effects>
			<effect name="SummonNpc">
				<param npcId="13022" npcCount="1" />
			</effect>
		</effects>

Code: Select all

<npc id="13022" level="70" type="L2EffectPoint">
The Npc will take the skill:

Code: Select all

<skill name="union_skill" id="5127" level="1" /> <!-- Recover Force -->

Code: Select all

<skill id="5127" levels="1" name="Recover Force">
Post Reply