I was wondering if there was a way to make this LUA script remove your hearth stone. Also I was wondering if there is a way to remove the in-game unstucker.
Code:
function On_Gossip(pUnit, event, player)
if (player:HasFinishedQuest(10) == true) then
pUnit:GossipCreateMenu(18893, player, 0)
pUnit:GossipMenuAddItem(0, "Teleport me!", 1, 0)
pUnit:GossipSendMenu(player)
else
pUnit:SendBroadcastMessage("You need to do the quest first!")
end
end
function Gossip_Submenus(pUnit, event, player, id, intid, code)
if(intid == 1) then
player:Teleport(0, -14420.2, 521.563, 5.00598)
end
end
RegisterUnitGossipEvent(18893, 1, "On_Gossip")
RegisterUnitGossipEvent(18893, 2, "Gossip_Submenus")