[LUA] Spirit Healer menu

User Tag List

Results 1 to 15 of 15
  1. #1
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [LUA] Spirit Healer

    Ive been looking for a spirit healer script that revives & removes your rez sickness. I couldnt find anything.

    Ive made this LUA script that should work:
    Code:
    local npcid = 6491
    
    function Healer_OnGossipTalk(pUnit, event, player, pMisc)
        pUnit:GossipCreateMenu(3543, player, 0)
        pUnit:GossipMenuAddItem(2, "Revive Me!", 3, 0)
        pUnit:GossipSendMenu(player)
    end
    end
    
    function Healer_OnGossip_select(pUnit, event, player, id, intid, code)
    if(intid == 3) then
        local plr = pUnit:GetClosestPlayer()
        plr:RemoveAura(8326)
        plr:RemoveAura(9036)
        plr:RemoveAura(20584)
        plr:RemoveAura(15007)
        player:SendAreaTriggerMessage("You have been Revived!")
    end
    intid = 0
    end
     
    RegisterUnitGossipEvent(6491,1,"Healer_OnGossipTalk")
    RegisterUnitGossipEvent(6491,2,"Healer_OnGossip_select")
    Im not too sure how to adjust the Spirit Healer to run the script though. So when i click the healer nothing happens? Should i just make a custom healer to replace the old one?

    [LUA] Spirit Healer
  2. #2
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did u fill in the right Npcflags?

  3. #3
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, flags are set to 1.

    I cant see what the problem is :doh:

  4. #4
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try setting it to 27, also no errors in your arcemu-world when you click the npc?
    Last edited by Aznex; 10-07-2008 at 01:27 PM.

  5. #5
    Lytle69's Avatar Member
    Reputation
    13
    Join Date
    Aug 2008
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just do it the Easy way and create a Custom Graveyard. Then spawn a Spirit healer on the same spot.

  6. #6
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lytle69, ive already done that... the spirit healers dont work. Thats what were trying to fix. I'll try setting the npc flags to 27, see what happens

  7. #7
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lytle69 View Post
    Just do it the Easy way and create a Custom Graveyard. Then spawn a Spirit healer on the same spot.
    He probably did that, but he also wants it to remove all possible debuffs you get.

    Edit: Oh you beat me to it kam

  8. #8
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    There used to be a bug that everyone had with spirit healers and not even being able to talk to them... It's because there flags were all wrong... Hang on i'll go look up the correct flags...

    NPC flags should be 32769, spirit healer + gossip. For future reference:


    Says TheSpider...

    He knows what he's doing try those flags...

    Also a query that helped some other people with same problem:

    Code:
    update `creature_proto` set `npcflags`='16384' where (`entry`='6491');


    Just experiment a bit...
    Last edited by stoneharry; 10-07-2008 at 01:45 PM.

  9. #9
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aznex: He probably did that, but he also wants it to remove all possible debuffs you get.

    Edit: Oh you beat me to it kam
    haha Thank you :P

    stoneharry: There used to be a bug that everyone had with spirit healers and not even being able to talk to them... It's because there flags were all wrong... Hang on i'll go look up the correct flags...

    Quote:
    NPC flags should be 32769, spirit healer + gossip. For future reference:


    Says TheSpider...

    He knows what he's doing try those flags...

    Also a query that helped some other people with same problem:

    Code:
    update `creature_proto` set `npcflags`='16384' where (`entry`='6491');


    Just experiment a bit...
    Thanks, 32769 does not work. 16384 returns the Healer back to normal. Thank you anyway, ill keep trying.

  10. #10
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could just go place your new healers near every graveyard

  11. #11
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That would be one hell of a task xD

  12. #12
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or you could extract all spirit healer as an microsoft excel file, copy the locations then use that thing that copy all the info into other tables and just fill in your NPCs stuff and copy it over to the other tables

    If that makes any sense to u xD

  13. #13
    KaMakaZe's Avatar Member
    Reputation
    22
    Join Date
    Sep 2007
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not at all, but heres some +Rep for being so helpful!

  14. #14
    lilbdiablo12's Avatar Active Member
    Reputation
    40
    Join Date
    Feb 2008
    Posts
    535
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i got one fix for that delete your graveyard table and lower the ressurect timer to 0 and they can rez instantly at the spot they died at.

  15. #15
    kreegoth's Avatar Contributor
    Reputation
    122
    Join Date
    Jun 2008
    Posts
    810
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or simply .. return spirit healers to normal function and create an item or a NPC you can spawn that will remove the Rez sickess in a location that they can all get to quickly( maybe make a item that ports you there)

Similar Threads

  1. [Ascent]No exsploring or spirit healers
    By hellraiser990 in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 10-04-2007, 07:37 AM
  2. [Race Edit] Troll Male to Spirit Healer (not perfect).
    By Ebon in forum World of Warcraft Model Editing
    Replies: 15
    Last Post: 09-30-2007, 06:56 AM
  3. Spirit Healer Problem [Reposted on correct forum]
    By Rave_xxl5000 in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 08-31-2007, 04:15 PM
  4. Human(female) to Spirit healer.
    By midnight in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 07-15-2007, 08:54 AM
  5. Rez from spirit healer area with no rez sickness.
    By cptfathead in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 07-02-2007, 10:33 PM
All times are GMT -5. The time now is 12:54 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search