About changes

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
chromiumdj
Posts: 52
Joined: Mon Jul 27, 2015 11:51 am

About changes

Post by chromiumdj »

Hellow!

What has been changed into that??

Code: Select all

import com.l2jserver.L2DatabaseFactory;
import com.l2jserver.gameserver.datatables.CharNameTable;
import com.l2jserver.gameserver.datatables.ClanTable;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.olympiad.OlympiadManager;
import com.l2jserver.gameserver.model.quest.Quest;
import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
Gettin some errors on import here =S

MASTER Rev
zhort
Posts: 106
Joined: Thu Oct 06, 2011 11:08 pm

Re: About changes

Post by zhort »

l2databasefactory maybe?
chromiumdj
Posts: 52
Joined: Mon Jul 27, 2015 11:51 am

Re: About changes

Post by chromiumdj »

yeah gettin error on import l2databasefactory , charnametable and clantable... =/
User avatar
Avanael92
Advanced User
Advanced User
Posts: 189
Joined: Thu Aug 07, 2014 5:26 pm
Location: Germany

Re: About changes

Post by Avanael92 »

Normally Eclipse should tell you which import you could use instead.

Anyway,

for L2DatabaseFactory:

Code: Select all

import com.l2jserver.commons.database.pool.impl.ConnectionFactory;
for CharNameTable and ClanTable:

Code: Select all

import com.l2jserver.gameserver.data.sql.impl.CharNameTable;
import com.l2jserver.gameserver.data.sql.impl.ClanTable;
chromiumdj
Posts: 52
Joined: Mon Jul 27, 2015 11:51 am

Re: About changes

Post by chromiumdj »

Thanks man! Im still learning many things.. :oops:
Post Reply