1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 17:02:53 +00:00

Several changes

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-18 02:18:37 -03:00
parent cd41122035
commit 4c27add4ef
162 changed files with 492 additions and 579 deletions

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,23 +13,23 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template; package script.template;
import java.lang.annotation.Documented; import java.lang.annotation.Documented;
import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy; import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
/** /**
* Marker annotation that is used to mark disabled templates so they will be * Marker annotation that is used to mark disabled templates so they will be
* ignored by {@link TemplateLoader} * ignored by {@link TemplateLoader}
* *
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */
@Target(ElementType.TYPE) @Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
public @interface DisabledTemplate { public @interface DisabledTemplate {
} }

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,84 +13,84 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template; package script.template;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.util.Set; import java.util.Set;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import com.google.inject.Inject; import com.google.inject.Inject;
import com.l2jserver.model.template.Template; import com.l2jserver.model.template.Template;
import com.l2jserver.service.game.scripting.classlistener.Loader; import com.l2jserver.service.game.scripting.classlistener.Loader;
import com.l2jserver.service.game.scripting.classlistener.Unloader; import com.l2jserver.service.game.scripting.classlistener.Unloader;
import com.l2jserver.service.game.template.ScriptTemplateService; import com.l2jserver.service.game.template.ScriptTemplateService;
import com.l2jserver.service.game.template.TemplateService; import com.l2jserver.service.game.template.TemplateService;
import com.l2jserver.util.ClassUtils; import com.l2jserver.util.ClassUtils;
import com.l2jserver.util.factory.CollectionFactory; import com.l2jserver.util.factory.CollectionFactory;
/** /**
* Utility class that loads all Template's in classPath of this script context.<br> * Utility class that loads all Template's in classPath of this script context.<br>
* Template should be public, not abstract, not interface, must have default * Template should be public, not abstract, not interface, must have default
* constructor annotated with @Inject. * constructor annotated with @Inject.
* *
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */
public class TemplateLoader implements Loader, Unloader { public class TemplateLoader implements Loader, Unloader {
private static final Logger log = LoggerFactory private static final Logger log = LoggerFactory
.getLogger(TemplateLoader.class); .getLogger(TemplateLoader.class);
private final ScriptTemplateService templateService; private final ScriptTemplateService templateService;
@Inject @Inject
public TemplateLoader(TemplateService templateService) { public TemplateLoader(TemplateService templateService) {
this.templateService = (ScriptTemplateService) templateService; this.templateService = (ScriptTemplateService) templateService;
} }
@Override @Override
public void load(Class<?>[] classes) { public void load(Class<?>[] classes) {
log.debug("Loading templates from {} classes", classes.length); log.debug("Loading templates from {} classes", classes.length);
for (final Class<? extends Template<?>> template : getSuitableClasses(classes)) { for (final Class<? extends Template<?>> template : getSuitableClasses(classes)) {
log.debug("Found loadable template class: {}", template); log.debug("Found loadable template class: {}", template);
templateService.addTemplate(template); templateService.addTemplate(template);
} }
} }
@Override @Override
public void unload(Class<?>[] classes) { public void unload(Class<?>[] classes) {
log.debug("Unloading templates from {} classes", classes.length); log.debug("Unloading templates from {} classes", classes.length);
for (final Class<? extends Template<?>> template : getSuitableClasses(classes)) { for (final Class<? extends Template<?>> template : getSuitableClasses(classes)) {
log.debug("Found unloadable template class: {}", template); log.debug("Found unloadable template class: {}", template);
// TODO unloading // TODO unloading
} }
} }
/** /**
* Returns list of suitable Template classes to load/unload * Returns list of suitable Template classes to load/unload
* *
* @return list of Template classes to load/unload * @return list of Template classes to load/unload
*/ */
@SuppressWarnings({ "unchecked" }) @SuppressWarnings({ "unchecked" })
private static Set<Class<? extends Template<?>>> getSuitableClasses( private static Set<Class<? extends Template<?>>> getSuitableClasses(
Class<?>[] classes) { Class<?>[] classes) {
final Set<Class<? extends Template<?>>> suitable = CollectionFactory final Set<Class<? extends Template<?>>> suitable = CollectionFactory
.newSet(null); .newSet(null);
for (Class<?> clazz : classes) { for (Class<?> clazz : classes) {
if (!ClassUtils.isSubclass(clazz, Template.class)) if (!ClassUtils.isSubclass(clazz, Template.class))
continue; continue;
if (Modifier.isAbstract(clazz.getModifiers()) if (Modifier.isAbstract(clazz.getModifiers())
|| Modifier.isInterface(clazz.getModifiers())) || Modifier.isInterface(clazz.getModifiers()))
continue; continue;
if (!Modifier.isPublic(clazz.getModifiers())) if (!Modifier.isPublic(clazz.getModifiers()))
continue; continue;
if (clazz.isAnnotationPresent(DisabledTemplate.class)) if (clazz.isAnnotationPresent(DisabledTemplate.class))
continue; continue;
suitable.add((Class<? extends Template<?>>) clazz); suitable.add((Class<? extends Template<?>>) clazz);
} }
return suitable; return suitable;
} }
} }

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.l2jserver.model.id.template.CharacterTemplateID; import com.l2jserver.model.id.template.CharacterTemplateID;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

View File

@@ -1,4 +1,3 @@
/* /*
* This file is part of l2jserver <l2jserver.com>. * This file is part of l2jserver <l2jserver.com>.
* *
@@ -14,7 +13,7 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with l2jserver. If not, see <http://www.gnu.org/licenses/>. * along with l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/ */
package script.template.actor.character; package script.template.actor.character;
import com.google.inject.Inject; import com.google.inject.Inject;

Some files were not shown because too many files have changed in this diff Show More