[GUIDE] How to make a Healer NPC! menu

User Tag List

Results 1 to 8 of 8
  1. #1
    kikpp's Avatar Active Member
    Reputation
    21
    Join Date
    Jun 2007
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [GUIDE] How to make a Healer NPC!

    Ok just to let you guys know...I DID NOT MAKE THIS GUIDE just thought i would share it with you though cuz I don't see a thread on it.

    1.) Open your MySQL program. (Whatever you use. I'm using HeidiSQL.)
    2.) Go to Ascent -> Creature Names -> Data
    3.) Add a new entry by hitting the "+" in the toolbar.
    4.) Type the following information into the database:

    Entry: A High Number (I used 60011)
    Name: Whatever you want your healer to be named.
    Subname: Your Healer's Subname (I used "Town Healer")
    Info_Str: Leave Blank or 0
    Flags1: Leave Blank
    Type: 7
    Family: 0
    Rank: 0
    Unk4: 0
    SpellDataID: 0
    Male_DisplayID1: 0 (I put at 0 because my NPC is female, but you can put any Display ID here and it will randomly spawn the NPC with one of the four Display ID's that you put into these 4 tabs.)
    Female_DisplayID1: 5444 (Stormwind Innkeeper Alison)
    Male_DisplayID2: 0
    Female_Display ID2: 0
    Unknown_Float1: 1
    Unknown_Float2: 1
    Civilian: 0 or 1 (1 to make it unhittable)
    Leader: 0

    Okay. Now onto the next section...
    5.) Go back to your Ascent Database
    6.) Go into Creature_Proto
    7.) Create a new tab and input the following:

    Entry: 60011 (Must exactly match your EntryID in the Creature_Name Database)
    MinLevel: (Minimum level that will spawn.)
    MaxLevel: (Maximum level that will spawn.)
    Faction: 35 (I used 35 because it's a Neutral Faction. You can use any Faction ID you please.)
    MinimumHealth: (Whatever you want. Must be lower than MaximumHealth.)
    MaximumHealth: (Whatever you want. Must be higher than MinimumHealth.)
    Mana: (Whatever you want. Don't leave at 0 because she needs Mana to cast, I think. I put to 10000.)
    Scale: 1 (This is how many times bigger she will be than the normal size of the DisplayID. 1 is normal, 2 is x2, 3 is x3, and so on.)
    NPCFlags: 3 (This is important. 1 (Guide) + 2 (Quest Giver) = 3)
    AttackTime: 1800 (This is how fast your NPC will hit. The lower the faster, I believe.)
    AttackType: 0
    MinDamage: (Whatever you want the minimum damage to be.)
    MaxDamage: (Whatever you want the maximum damage to be.)
    RangedMinDamage: 0
    RangedMaxDamage: 0
    MountDisplay: 0 (A matter of preference. If you want your Healer on a mount, by all means. Up to you.)

    -Skip the Equipment Slots. Go to RespawnTime-

    RespawnTime: (Normal is 360000, but I put at 12000 so she respawns quicker.)
    Armor: (Whatever you want.)
    Resistances1-6: (Whatever you want.)
    CombatReach: 1
    Bounding_Radius: 1
    Auras: Leave Blank
    Boss: 0
    Money: 0
    Invisibility_Type: 0
    Death_State: 0
    Walk_Speed: 2.5 (Standard)
    Run_Speed: 8 (Standard)
    Fly_Speed: 14 (Standard)
    Extra_A9_Flags: 0

    Okay, Now we're done the basic NPC Structure of our Healer. You guys still with me? Okay... Now we start the Quest Structure.
    8.) Go back to your Ascent Database
    9.) Go to the Quest Database
    10.) Create a new entry and imput the following:

    Entry: (A VERY High Number. There are A LOT of quests in WoW and you don't want any conflictions. I used 1000004... Just to be safe.)
    ZoneID: (This will identify what zone the quest is in. I used 5 which is Blank.)
    Sort: (Same as ZoneID. I used 5.)
    Flags: 0
    MinLevel: 1 (You want everyone to be healed, so use level 1 as the minimum.)
    MaxLevel: 70 (This will allow everyone from 1-70 be able to use this function.)
    Type: 0
    RequiredRaces: 1791 (All Races)
    RequiredClass: 0 (All Classes)
    RequiredTradeskill: 0 (No requirement)
    RequiredTradeskillValue: 0
    RequiredRepValue: 0
    LimitTime: 0
    SpecialFlags: 0
    PreviousQuestID: 0
    NextQuestID: 0
    SrcItem: 0
    SrcItemCount: 0
    Title: Heal My Wounds (You can use anything you want it to be called.)
    Details: (Whatever you want the quest to say first time you take it. Won't show after because it's repeatable.)
    Objectives: (What the objectives are. It will show this after you complete it the first time.)
    IncompleteText: (What the NPC will say if you take the quest but don't compelte it. Not really neccessary as you will complete the quest right off.)

    -Skip the rest until you get to the "CastSpell" tab-

    CastSpell: 25210 (This Greater Heal [Rank 6], it heals for about 3.5k. I couldn't find the ID for [Rank 7], but this will heal you in about 2 or 3 heals at level 70. You can also switch this number for any SpellID you wish for her to cast. You can basically use this guide almost exactly for ANY spell. Including buffs, mount spells, or any other spell you find on the ID list.)

    -Skip the rest until you get to "IsRepeatable" tab-

    IsRepeatable: 1 (This will enable it to be useable over and over.)

    Okay, now we're done the quest outline. Almost done. Just need to give our NPC the quest.
    11.) Go back to your Ascent Database
    12.) Go to Creature_Quest_Starter
    13.) Create a new entry and type in the following:

    ID: 60011 (Must match the EntryID you used for your NPC.)
    Quest: 1000004 (Must match your Quest's Entry ID)

    14.) Go back to you Ascent Database
    15.) Go to Creature_Quest Finisher
    16.) Create a new entry and imput the following:

    ID: 60011 (Must match the EntryID you used for your NPC.)
    Quest: 1000004 (Must match your Quest's Entry ID)

    And we're done! Now go into game and spawn the NPC wherever you want it!
    Hope this'll help some of you guys out!

    This was made by : DimarypEvans on AC-Web

    [GUIDE] How to make a Healer NPC!
  2. #2
    catscradle's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice man...This was a very easy guide to follow. And thx for sharing even if it was from that other guy on AC-Web...

  3. #3
    Appled's Avatar Contributor
    Reputation
    105
    Join Date
    Apr 2007
    Posts
    568
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice +2rep

  4. #4
    kikpp's Avatar Active Member
    Reputation
    21
    Join Date
    Jun 2007
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx I thought it was cool

  5. #5
    OMGPWN's Avatar Active Member
    Reputation
    35
    Join Date
    Oct 2006
    Posts
    431
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by catscradle View Post
    Nice man...This was a very easy guide to follow. And thx for sharing even if it was from that other guy on AC-Web...
    He is that other guy. lol (100% Random guess)

  6. #6
    kikpp's Avatar Active Member
    Reputation
    21
    Join Date
    Jun 2007
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the guy who made the guide?

  7. #7
    uberboy's Avatar Member
    Reputation
    6
    Join Date
    Feb 2007
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good job man rep2x

  8. #8
    kikpp's Avatar Active Member
    Reputation
    21
    Join Date
    Jun 2007
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx...Ill try to find some more guides that aren't posted here

Similar Threads

  1. [GUIDE] <<How to make a Custom NPC>> [WITH PICS]
    By sasoritail in forum WoW EMU Guides & Tutorials
    Replies: 42
    Last Post: 04-30-2020, 10:53 AM
  2. [Guide]How to make Custom Class Trainers and Npc.
    By Xcynic in forum WoW EMU Guides & Tutorials
    Replies: 56
    Last Post: 07-28-2009, 02:43 PM
  3. [Guide] How To Make A Custom NPC With Pics!
    By Xtinction in forum WoW EMU Guides & Tutorials
    Replies: 4
    Last Post: 05-18-2008, 01:30 PM
  4. [GUIDE]:How to make npc drop item!
    By Kazard123 in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 03-06-2008, 05:32 PM
  5. [Guide] How to make a custom C++ npc!
    By berryman13 in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 12-26-2007, 01:21 PM
All times are GMT -5. The time now is 04:52 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search