Browse Source

BETA/STABLE: Cleanup due [L4613].

MELERIX 14 years ago
parent
commit
0c5ef06f23

+ 0 - 1
L2J_DataPack_BETA/data/scripts.cfg

@@ -648,7 +648,6 @@ custom/SubClassCertification/Validator.java
 custom/HeroCirclet/HeroCirclet.java
 custom/HeroCirclet/HeroCirclet.java
 custom/HeroWeapon/HeroWeapon.java
 custom/HeroWeapon/HeroWeapon.java
 custom/IOPRace/IOPRace.java
 custom/IOPRace/IOPRace.java
-custom/NonTalkingNPCs/NonTalkingNPCs.java
 custom/PinsAndPouchUnseal/PinsAndPouchUnseal.java
 custom/PinsAndPouchUnseal/PinsAndPouchUnseal.java
 custom/SkillTransfer/SkillTransfer.java
 custom/SkillTransfer/SkillTransfer.java
 
 

+ 0 - 48
L2J_DataPack_BETA/data/scripts/custom/NonTalkingNPCs/NonTalkingNPCs.java

@@ -1,48 +0,0 @@
-/*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- * 
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- * 
- * 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 custom.NonTalkingNPCs;
-
-import com.l2jserver.gameserver.model.actor.L2Npc;
-import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
-import com.l2jserver.gameserver.model.quest.Quest;
-import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
-
-public class NonTalkingNPCs extends Quest
-{
-	private static final int[] NPC_IDS =
-	{
-		18684, 18685, 18686, 18687, 18688, 18689, 18690, 19691, 18692, 31557, 31606,
-		31671,31672,31673,31674,32026,32030,32031,32032,32306,32619,32620,32621
-	};
-
-	public NonTalkingNPCs(int id, String name, String descr)
-	{
-		super(id, name, descr);
-		for (int npcId : NPC_IDS)
-			addFirstTalkId(npcId);
-	}
-
-	@Override
-	public final String onFirstTalk(L2Npc npc, L2PcInstance player)
-	{
-		player.sendPacket(ActionFailed.STATIC_PACKET);
-		return null;
-	}
-
-	public static void main(String[] args)
-	{
-		new NonTalkingNPCs(-1, NonTalkingNPCs.class.getSimpleName(), "custom");
-	}
-}