Moved Primeval Isle scripts to zones package.
This commit is contained in:
parent
fcb6bbf3e8
commit
3c540e4d9b
8
trunk/dist/game/data/scripts.cfg
vendored
8
trunk/dist/game/data/scripts.cfg
vendored
@ -35,7 +35,6 @@ ai/group_template/PlainsOfDion.java
|
||||
ai/group_template/PlainsOfLizardman.java
|
||||
ai/group_template/PolymorphingAngel.java
|
||||
ai/group_template/PolymorphingOnAttack.java
|
||||
ai/group_template/PrimevalIsle.java
|
||||
ai/group_template/PrisonGuards.java
|
||||
ai/group_template/RandomSpawn.java
|
||||
ai/group_template/Remnants.java
|
||||
@ -51,7 +50,6 @@ ai/group_template/Wasteland.java
|
||||
# Individual
|
||||
ai/individual/Antharas/Antharas.java
|
||||
ai/individual/Baium/Baium.java
|
||||
ai/individual/Sailren/Sailren.java
|
||||
ai/individual/Venom/Venom.java
|
||||
ai/individual/Anais.java
|
||||
ai/individual/Ballista.java
|
||||
@ -129,7 +127,6 @@ ai/npc/Teleports/CrumaTower/CrumaTower.java
|
||||
ai/npc/Teleports/DarkOmens/DarkOmens.java
|
||||
ai/npc/Teleports/DelusionTeleport/DelusionTeleport.java
|
||||
ai/npc/Teleports/DimensionalWarpTeleport/DimensionalWarpTeleport.java
|
||||
ai/npc/Teleports/ElrokiTeleporters/ElrokiTeleporters.java
|
||||
ai/npc/Teleports/GainakUndergroundEntrance/GainakUndergroundEntrance.java
|
||||
ai/npc/Teleports/GardenOfSpirits/GardenOfSpirits.java
|
||||
ai/npc/Teleports/GiantServant/GiantServant.java
|
||||
@ -204,6 +201,11 @@ ai/zones/Magmeld/ArcanRitual.java
|
||||
ai/zones/Magmeld/OrbisTempleStatues.java
|
||||
ai/zones/Magmeld/OrbisTempleTeleports.java
|
||||
|
||||
# Primeval Isle
|
||||
ai/zones/PrimevalIsle/PrimevalIsle.java
|
||||
ai/zones/PrimevalIsle/ElrokiTeleporters/ElrokiTeleporters.java
|
||||
ai/zones/PrimevalIsle/Sailren/Sailren.java
|
||||
|
||||
# Sel Mahum Training Grounds
|
||||
ai/zones/SelMahumTrainingGrounds/SelMahumDrill.java
|
||||
ai/zones/SelMahumTrainingGrounds/SelMahumSquad.java
|
||||
|
@ -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.npc.Teleports.ElrokiTeleporters;
|
||||
package ai.zones.PrimevalIsle.ElrokiTeleporters;
|
||||
|
||||
import com.l2jmobius.gameserver.model.Location;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
||||
@ -37,7 +37,7 @@ final class ElrokiTeleporters extends AbstractNpcAI
|
||||
|
||||
private ElrokiTeleporters()
|
||||
{
|
||||
super(ElrokiTeleporters.class.getSimpleName(), "ai/npc/Teleports");
|
||||
super(ElrokiTeleporters.class.getSimpleName(), "ai/zones/PrimevalIsle");
|
||||
addFirstTalkId(ORAHOCHIN, GARIACHIN);
|
||||
addStartNpc(ORAHOCHIN, GARIACHIN);
|
||||
addTalkId(ORAHOCHIN, GARIACHIN);
|
@ -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.group_template;
|
||||
package ai.zones.PrimevalIsle;
|
||||
|
||||
import com.l2jmobius.gameserver.GeoData;
|
||||
import com.l2jmobius.gameserver.ai.CtrlIntention;
|
||||
@ -104,7 +104,7 @@ final class PrimevalIsle extends AbstractNpcAI
|
||||
|
||||
private PrimevalIsle()
|
||||
{
|
||||
super(PrimevalIsle.class.getSimpleName(), "ai/group_template");
|
||||
super(PrimevalIsle.class.getSimpleName(), "ai/zones/PrimevalIsle");
|
||||
addSpawnId(TREX);
|
||||
addSpawnId(SPRIGNANT);
|
||||
addSpawnId(MONSTERS);
|
@ -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.individual.Sailren;
|
||||
package ai.zones.PrimevalIsle.Sailren;
|
||||
|
||||
import com.l2jmobius.gameserver.instancemanager.GlobalVariablesManager;
|
||||
import com.l2jmobius.gameserver.instancemanager.ZoneManager;
|
||||
@ -65,7 +65,7 @@ final class Sailren extends AbstractNpcAI
|
||||
|
||||
private Sailren()
|
||||
{
|
||||
super(Sailren.class.getSimpleName(), "ai/individual");
|
||||
super(Sailren.class.getSimpleName(), "ai/zones/PrimevalIsle");
|
||||
addStartNpc(STATUE, CUBIC);
|
||||
addTalkId(STATUE, CUBIC);
|
||||
addFirstTalkId(STATUE);
|
Loading…
Reference in New Issue
Block a user