aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/World/item_scripts.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/server/scripts/World/item_scripts.cpp b/src/server/scripts/World/item_scripts.cpp
index 6bfd3336926..6a414ea4685 100644
--- a/src/server/scripts/World/item_scripts.cpp
+++ b/src/server/scripts/World/item_scripts.cpp
@@ -23,7 +23,6 @@ SDCategory: Items
EndScriptData */
/* ContentData
-item_nether_wraith_beacon(i31742) Summons creatures for quest Becoming a Spellfire Tailor (q10832)
item_flying_machine(i34060, i34061) Engineering crafted flying machines
item_gor_dreks_ointment(i30175) Protecting Our Own(q10488)
item_only_for_flight Items which should only useable while flying
@@ -85,29 +84,6 @@ public:
};
/*#####
-# item_nether_wraith_beacon
-#####*/
-
-class item_nether_wraith_beacon : public ItemScript
-{
-public:
- item_nether_wraith_beacon() : ItemScript("item_nether_wraith_beacon") { }
-
- bool OnUse(Player* player, Item* /*item*/, SpellCastTargets const& /*targets*/) override
- {
- if (player->GetQuestStatus(10832) == QUEST_STATUS_INCOMPLETE)
- {
- if (Creature* nether = player->SummonCreature(22408, player->GetPositionX(), player->GetPositionY()+20, player->GetPositionZ(), 0, TEMPSUMMON_TIMED_DESPAWN, 180000))
- nether->AI()->AttackStart(player);
-
- if (Creature* nether = player->SummonCreature(22408, player->GetPositionX(), player->GetPositionY()-20, player->GetPositionZ(), 0, TEMPSUMMON_TIMED_DESPAWN, 180000))
- nether->AI()->AttackStart(player);
- }
- return false;
- }
-};
-
-/*#####
# item_gor_dreks_ointment
#####*/