[Guide]Make a transform skill L2J 

Re: [Howto]Make a transform skill

Tanks a lot ^^

But where put the new .java file before compiling please (directorie) ?
 
Re: [Howto]Make a transform skill

Now save it and copy it in gameserver-data-scripts-transformations You don't need to compile anything for it to work. Just copy itin that directory and that is all
 
Re: [Howto]Make a transform skill

Hello, it's always me.

Sorry sorry but I'll try this and skill seems to be good but characters don't change. No transformation visible. I test it on L2JFree (Last Rev).

I'm so sad :(
 
Re: [Howto]Make a transform skill

Make sure you did this:
<set name="transformId" val="TEMPLATE ID OF MOB LIKE IN THE JAVA FILE"/>
and make sure you put the template id not the mob id.
And make sure that template id is like in the java file.
If it still don't work post the template id you want to use.
 
Re: [Howto]Make a transform skill

I get this error

----------
1. ERROR in \Tyrnnosaurus.java (at line 35)
if (this.getPlayer().transformId() > 0 && !this.getPlayer().isCursedWeap
onEquipped())
^^^^^^^^^^^
The method transformId() is undefined for the type L2PcInstance
----------
2. ERROR in \Tyrnnosaurus.java (at line 35)
if (this.getPlayer().transformId() > 0 && !this.getPlayer().isCursedWeap
onEquipped())
^^^^^^^^^^^^
^^^^^^^^^^
The method isCursedWeaponEquipped() is undefined for the type L2PcInstance
----------
3. ERROR in \Tyrnnosaurus.java (at line 44)
this.getPlayer().transformInsertInfo();
^^^^^^^^^^^^^^^^^^^
The method transformInsertInfo() is undefined for the type L2PcInstance
----------
4. ERROR in \Tyrnnosaurus.java (at line 67)
if (this.getPlayer().isCursedWeaponEquipped())
^^^^^^^^^^^^^^^^^^^^^^
The method isCursedWeaponEquipped() is undefined for the type L2PcInstance
----------
5. ERROR in \Tyrnnosaurus.java (at line 75)
this.getPlayer().transformUpdateInfo();
^^^^^^^^^^^^^^^^^^^
The method transformUpdateInfo() is undefined for the type L2PcInstance
----------
5 problems (5 errors)The method transformId() is undefined for the type net.sf.l
2j.gameserver.model.actor.instance.L2PcInstance
The method isCursedWeaponEquipped() is undefined for the type net.sf.l2j.gameser
ver.model.actor.instance.L2PcInstance
The method transformInsertInfo() is undefined for the type net.sf.l2j.gameserver
.model.actor.instance.L2PcInstance
The method isCursedWeaponEquipped() is undefined for the type net.sf.l2j.gameser
ver.model.actor.instance.L2PcInstance
The method transformUpdateInfo() is undefined for the type net.sf.l2j.gameserver
.model.actor.instance.L2PcInstance
Failed executing script: C:\Server\L2JOneo_gameserver\data\scripts\transformatio
ns\Tyrnnosaurus.java. See Tyrnnosaurus.java.error.log for details.

Some errors i managed to fix but i dont seem to find a way to fix these. So any help ?
 
wow thanks!

but i have a problem..
I make the transform added skill (striking thunderbolt) (that what he floats in the air and several lightning fall from the sky) but the animation does not happen he no performs the animation ...
he attacks normally walks normally but the skill does not work cause damage in the mobs but no animation:scratch:

sry my bad english
 
Back