Jump to content
  • Quest 808 missing or bugged completion script


    twocows
    • Status: Unconfirmed
      Main Category: Quests
      Sub-Category: Quest
      Version: 21 Milestone: 22 Priority: Low
      Implemented Version: 0.20

    Should spawn NPC temporarily on completion

    According to the comments on Wowhead, there is a small script that should play after quest 808, Minshina's Skull, which should spawn NPC 3289 (Spirit of Minshina) facing the player. He then bows at the player and despawns shortly after. This script doesn't seem to play. Based on the screenshots on Wowhead, he should spawn at about 56.00, 74.67.

    [url]http://www.wowhead.com/npc=3289[/url]

    Suggest low priority.


    User Feedback

    Recommended Comments

    The following script should fix that:

    [code]
    --[[
    -= Script Information =-
    * Zone: Durotar
    * QuestId: 808
    * Script Type: Quest
    * Npc: Spirit of Minshina
    ]]--

    local questId = 808
    local minshinaId = 3289
    local gadrinId = 3188 -- quest giver

    --
    -- Minshina's Skull - Summon Minshina on Completion
    --

    local function Minshina_OnQuestComplete(event, player, creature, quest)
    if (quest:GetId() == questId) then
    local minshina = creature:SpawnCreature(minshinaId, -820.111, -4921.800, 19.321, 3.510, 3, 10000)
    if(minshina) then
    minshina:Emote(2) -- bowing emote
    end
    end
    end

    RegisterCreatureEvent(gadrinId, 33, Minshina_OnQuestComplete)
    [/code]

    Link to comment
    Share on other sites



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use