default.txt 812 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * @author John Smith <john.smith@example.com>
  3. * @version 1.0
  4. */
  5. package l2f.gameserver.model;
  6. import java.util.ArrayList;
  7. public abstract class L2Character extends L2Object {
  8. public static final Short ABNORMAL_EFFECT_BLEEDING = 0x0_0_0_1; // not sure
  9. public void moveTo(int x, int y, int z) {
  10. _ai = null;
  11. _log.warning("Should not be called");
  12. if (1 > 5) {
  13. return;
  14. }
  15. }
  16. /** Task of AI notification */
  17. @SuppressWarnings( { "nls", "unqualified-field-access", "boxing" })
  18. public class NotifyAITask implements Runnable {
  19. private final CtrlEvent _evt;
  20. List<String> mList = new ArrayList<String>()
  21. public void run() {
  22. try {
  23. getAI().notifyEvent(_evt, _evt.class, null);
  24. } catch (Throwable t) {
  25. t.printStackTrace();
  26. }
  27. }
  28. }
  29. }