niko001 Posted May 15, 2012 Posted May 15, 2012 hello mxc i wanted to ask you a question to be sure. import net.sf.l2j.gameserver.model.L2Skill; in freya l2j server this import is this? com.l2jserver.gameserver.templates.skills.L2SkillType or this com.l2jserver.gameserver.model.L2Skill thanks for reply!
0 Fanky Posted May 15, 2012 Posted May 15, 2012 l2skilltype is something different from l2skill. its this com.l2jserver.gameserver.model.L2Skill
0 niko001 Posted May 15, 2012 Author Posted May 15, 2012 l2skilltype is something different from l2skill. its this com.l2jserver.gameserver.model.L2Skill sorry forget to place a portion of import at the end. I wanted to ask was which. import net.sf.l2j.gameserver.model.L2Skill.SkillType; then this is com.l2jserver.gameserver.templates.skills.L2SkillType or not?
0 niko001 Posted May 15, 2012 Author Posted May 15, 2012 i need some help with adapt this to l2jserver freya. Index: java/net/sf/l2j/gameserver/GameServer.java =================================================================== --- java/net/sf/l2j/gameserver/GameServer.java (revision 5263) +++ java/net/sf/l2j/gameserver/GameServer.java (working copy) @@ -199,6 +199,7 @@ import net.sf.l2j.gameserver.handler.usercommandhandlers.PartyInfo; import net.sf.l2j.gameserver.handler.usercommandhandlers.Time; import net.sf.l2j.gameserver.handler.voicedcommandhandlers.Wedding; +import net.sf.l2j.gameserver.handler.voicedcommandhandlers.sellbuff; import net.sf.l2j.gameserver.handler.voicedcommandhandlers.stats; import net.sf.l2j.gameserver.idfactory.IdFactory; import net.sf.l2j.gameserver.instancemanager.AuctionManager; @@ -592,6 +593,7 @@ _voicedCommandHandler = VoicedCommandHandler.getInstance(); _voicedCommandHandler.registerVoicedCommandHandler(new stats()); + _voicedCommandHandler.registerVoicedCommandHandler(new sellbuff()); if(Config.L2JMOD_ALLOW_WEDDING) _voicedCommandHandler.registerVoicedCommandHandler(new Wedding()); I have no idea how to adapt to the gameserver.
0 Tryskell Posted May 15, 2012 Posted May 15, 2012 CTRL+SHIFT+O for godamn imports, and such question is resolved automatically.
Question
niko001
hello mxc i wanted to ask you a question to be sure.
in freya l2j server this import is this?
or this
thanks for reply!
5 answers to this question
Recommended Posts