diff --git a/trunk/dist/game/data/scripts.cfg b/trunk/dist/game/data/scripts.cfg index e8c018fcf3..5c84283516 100644 --- a/trunk/dist/game/data/scripts.cfg +++ b/trunk/dist/game/data/scripts.cfg @@ -266,7 +266,6 @@ events/ThePowerOfLove/ThePowerOfLove.java # Disabled by default events #events/GiftOfVitality/GiftOfVitality.java #events/HeavyMedal/HeavyMedal.java -#events/TheValentineEvent/TheValentineEvent.java #events/FreyaCelebration/FreyaCelebration.java #events/MasterOfEnchanting/MasterOfEnchanting.java #events/LoveYourGatekeeper/LoveYourGatekeeper.java diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-1.htm b/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-1.htm deleted file mode 100644 index e13f0bd3dc..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-1.htm +++ /dev/null @@ -1,10 +0,0 @@ - -Meow~ You're really a lovable person.
-I'll definitely help you show your heart to the one who's precious to you.
-If you use the Valentine Secret Spell that I gave you, you can find out the way to make a special Valentine Cake for the person you love~ meow~.
-If you register the Valentine Secret Spell as a recipe, then collect 10 dark chocolates, 10 white chocolates, and 5 fresh creams, you can make a cake. It can fail sometimes, so pray for success in your heart~ meow~~
-But, I can't give you the chocolates and fresh cream. Some unknown monsters took them after raiding the warehouse awhile ago.
-But with the courage that comes from making a gift for someone precious to you, you should be able to retrieve the cake ingredients from the monsters.
- - - \ No newline at end of file diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-2.htm b/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-2.htm deleted file mode 100644 index ec43c050fa..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-2.htm +++ /dev/null @@ -1,9 +0,0 @@ - -Meow~ It's a reward for the person receiving the gift.
-If you take the Valentine Secret Spell and collect chocolates and fresh cream, you can make a special Valentine cake. The first cake that you make will probably look shabby. But with a little effort, you can turn it into a great cake.
-First, the Simple Valentine Cake - Transformation Scroll, Healing Potion, Ordinary Valentine Cake
-Second, the Velvety Valentine Cake - Armor Enchant Scroll, Blessed Scroll of Return, Blessed Scroll of Resurrection, 3 Day Energy Agathion of Love, Delicious Valentine Cake
-Third, the Delectable Valentine Cake - Weapon Enchant Scroll, 7 Day Energy Agathion of Love, Perfect Valentine Cake
-Fourth, the Decadent Valentine Cake - Top-grade Armor Enchant Scroll, 15 Day Energy Agathion of Love, 30 Day Energy Agathion of Love

- - \ No newline at end of file diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-3.htm b/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-3.htm deleted file mode 100644 index c9b8bba894..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-3.htm +++ /dev/null @@ -1,5 +0,0 @@ - -Meow~
-Please take the Valentine Secret Spell to help you make a special Valentine cake.

- - \ No newline at end of file diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-4.htm b/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-4.htm deleted file mode 100644 index eb118aff71..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301-4.htm +++ /dev/null @@ -1,6 +0,0 @@ - -Meow~
-I already gave you Valentine Secret Spell, but you're back for me. How greedy.
-I can't give it to you~

- - \ No newline at end of file diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301.htm b/trunk/dist/game/data/scripts/events/TheValentineEvent/4301.htm deleted file mode 100644 index 7492de65b3..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/4301.htm +++ /dev/null @@ -1,10 +0,0 @@ - -Meow~ meow~
-I'm Valentine messenger Queen Yang
-The goddess of love Aphrodite gave me a special mission.
-She told me to help lovers stay in love forever, to deliver comaraderie to friends who are always by your side, and to give something to those who are precious to you.
-I want to give all of you a special gift today. Lalala~ Lala~
- - - - \ No newline at end of file diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/TheValentineEvent.java b/trunk/dist/game/data/scripts/events/TheValentineEvent/TheValentineEvent.java deleted file mode 100644 index b7ccd827ae..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/TheValentineEvent.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * 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 . - */ -package events.TheValentineEvent; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.event.LongTimeEvent; - -/** - * The Valentine Event event AI. - * @author Gnacik - */ -final class TheValentineEvent extends LongTimeEvent -{ - // NPC - private static final int NPC = 4301; - // Item - private static final int RECIPE = 20191; - // Misc - private static final String COMPLETED = TheValentineEvent.class.getSimpleName() + "_completed"; - - private TheValentineEvent() - { - super(TheValentineEvent.class.getSimpleName(), "events"); - addStartNpc(NPC); - addFirstTalkId(NPC); - addTalkId(NPC); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = event; - if (event.equalsIgnoreCase("4301-3.htm")) - { - if (player.getVariables().getBoolean(COMPLETED, false)) - { - htmltext = "4301-4.htm"; - } - else - { - giveItems(player, RECIPE, 1); - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - return htmltext; - } - - @Override - public String onFirstTalk(L2Npc npc, L2PcInstance player) - { - return npc.getId() + ".htm"; - } - - public static void main(String[] args) - { - new TheValentineEvent(); - } -} diff --git a/trunk/dist/game/data/scripts/events/TheValentineEvent/config.xml b/trunk/dist/game/data/scripts/events/TheValentineEvent/config.xml deleted file mode 100644 index 9dbe581617..0000000000 --- a/trunk/dist/game/data/scripts/events/TheValentineEvent/config.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file