[Help]About transformation L2J 

Joined
Feb 6, 2008
Messages
4
Reaction score
0
Hi all , i'm new in this forum and starting with l2j-free , so like all newbies , i need some help ...

My question is :

Is it possible to make an item (e.g : bracelet mithril) that when you wear it , you transform yourself into Akamanah but without the skill and the name from transformation like cursed weapons . I only wanna change the player appearence like when you transform using the admin menu .

Thanx for helping me , cya .

ps: sorry if i have a bad english , i'm french xD .
 
Yeh you can just make a new transformation skill that will put just the akamanah transform texture and nothing more. Then go in net.sf.l2j.gameserver.model.handlers.itemhandlers.transformationitems.java
Search for this line

private static final int ITEM_IDS[] = { 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9897, 10131, 10132, 10133, 10134, 10135, 10136, 10137, 10138, 10151, 10274};

And add the item id here then add a new case after this

case 10274:
skillId = 2428;
break;
If you use already compiled serverpacks forgot the idea. And you need to know javascript to do this.
 
Upvote 0
Back