Organized boss scripts to separate folder.

This commit is contained in:
MobiusDev
2016-12-16 10:59:46 +00:00
parent 3afe0d648b
commit 294f0cc600
124 changed files with 69 additions and 54 deletions

View File

@@ -33,7 +33,7 @@ import ai.AbstractNpcAI;
* Lindvior Scene AI.
* @author nonom
*/
public final class Lindvior extends AbstractNpcAI
public final class LindviorScene extends AbstractNpcAI
{
private static final int LINDVIOR_CAMERA = 18669;
private static final int TOMARIS = 32552;
@@ -51,7 +51,7 @@ public final class Lindvior extends AbstractNpcAI
private L2Npc _tomaris = null;
private L2Npc _artius = null;
public Lindvior()
public LindviorScene()
{
scheduleNextLindviorVisit();
}
@@ -135,6 +135,6 @@ public final class Lindvior extends AbstractNpcAI
public static void main(String[] args)
{
new Lindvior();
new LindviorScene();
}
}

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.MonasteryOfSilence;
package ai.bosses.Anais;
import java.util.ArrayList;
@@ -159,10 +159,6 @@ public final class Anais extends AbstractNpcAI
return super.onAttack(npc, attacker, damage, isSummon);
}
/*
* (non-Javadoc)
* @see com.l2jmobius.gameserver.model.quest.Quest#onSpawn(com.l2jmobius.gameserver.model.actor.L2Npc)
*/
@Override
public String onSpawn(L2Npc npc)
{

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.LairOfAntharas.Antharas;
package ai.bosses.Antharas;
import java.util.HashMap;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.TowerOfInsolence.Baium;
package ai.bosses.Baium;
import com.l2jmobius.Config;
import com.l2jmobius.commons.util.CommonUtil;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.BaylorWarzone;
package ai.bosses.Baylor;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.StatsSet;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.CrumaTower;
package ai.bosses.Core;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.FrostLake.FreyasSteward;
package ai.bosses.Freya.FreyasSteward;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Npc;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.IceQueensCastle;
package ai.bosses.Freya.IceQueensCastle;
import com.l2jmobius.gameserver.ai.CtrlIntention;
import com.l2jmobius.gameserver.enums.ChatType;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.IceQueensCastleBattle;
package ai.bosses.Freya.IceQueensCastleBattle;
import java.util.Collections;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.FreyasGarden.Jinia;
package ai.bosses.Freya.Jinia;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.FreyasGarden.Sirra;
package ai.bosses.Freya.Sirra;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.LastImperialTomb;
package ai.bosses.Frintezza;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.LastImperialTomb;
package ai.bosses.Frintezza;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_ATTACK;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.IstinaCavern;
package ai.bosses.Istina;
import java.util.Comparator;
import java.util.Map;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.Kimerian;
package ai.bosses.Kimerian;
import com.l2jmobius.gameserver.enums.CategoryType;
import com.l2jmobius.gameserver.enums.ChatType;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.OctavisWarzone;
package ai.bosses.Octavis;
import com.l2jmobius.commons.util.CommonUtil;
import com.l2jmobius.gameserver.enums.Movie;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.SeaOfSpores;
package ai.bosses.Orfen;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.Wastelands;
package ai.bosses.QueenAnt;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.StakatoNest;
package ai.bosses.QueenShyeed;
import com.l2jmobius.gameserver.enums.ChatType;
import com.l2jmobius.gameserver.instancemanager.ZoneManager;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.PrimevalIsle.Sailren;
package ai.bosses.Sailren;
import com.l2jmobius.gameserver.instancemanager.GlobalVariablesManager;
import com.l2jmobius.gameserver.instancemanager.ZoneManager;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.PrisonOfDarkness.Cannon;
package ai.bosses.Spezion.Cannon;
import java.util.HashMap;
import java.util.Map;
@@ -55,7 +55,6 @@ public final class Cannon extends AbstractNpcAI
private static final int F_MEMORY_FRAGMENT = 17613; // Frightening Memory Fragment
// Misc
private static final Map<Integer, Integer> TRANSFORM_DATA = new HashMap<>();
static
{
TRANSFORM_DATA.put(22965, 22979); // Novice Phantom -> Novice Escort Swordsman

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.PrisonOfDarkness;
package ai.bosses.Spezion;
import com.l2jmobius.gameserver.model.actor.L2Npc;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.TautiWarzone;
package ai.bosses.Tauti;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.TeredorWarzone;
package ai.bosses.Teredor;
import java.util.HashMap;
import java.util.Map;

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