How to Make A Custom Mob menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    JulianX's Avatar Contributor
    Reputation
    106
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to Make A Custom Mob

    Step 1 :: Connecting to Database + creating creature
    >We Will use the Tools SQLyog to Connect to the DB, this is where we create the creature<


    Open SQLyog and go to your main database, and find the table named ' creature_names '. And here you will see:

    Entry
    This will be the Entry ID for the creature. (this is the # we use to spawn him)
    We will use ID ' 80000 '

    creature_name
    This is the name that will appear for the creature, we will use
    ' Kalamos '

    Subname
    This is the name that appears in Brackets under their main name. looks like this - <brackets>

    Flags 1
    Set to ' 0 '

    Type
    you can take your pic from these #'s
    Beast = 1
    Dragonkin = 2
    Demons = 3
    Elementals = 4
    Giants = 5
    Undead = 6
    Humanoids = 7
    Critters = 8
    Mechanicals = 9
    Uncategorized = 10

    We will set to ' 7 '

    Family
    Set to ' 0 '

    Rank
    Set to ' 0 '

    unk4
    Set to ' 0 '

    SpellDataID
    Set to ' 0 '

    Display ID
    For display id, go to Wowhead: World of Warcraft Database and type in the name of the npc that you want your custom mob to look like. Once you've found the NPC you like, look at the number at the end of the url it should be something like 5858 (Greater Lava Spider). Next go to your database tool and look in creature_names for the entry id that you found on wowhead. Once you've found it, look at the display id that it has, and put that same display id (in the Greater Lava Spider's Case 7510) into your custom mob's display id column.

    We will use ' 7610 '

    unk2
    Set to ' 1 '

    unk3
    Set to ' 1 '

    Civillian

    Set to ' 0 '

    Leader
    Set to ' 0 '

    Use this for a template if you need:
    Code:
    INSERT INTO `creature_names` VALUES ('Entry ID', 'Name', 'Subname', '0', 'Type #', '0', '0', '0', '0', 'Display ID', '1', '1', '0', '0');

    Step 2 :: Creating Creature Stats

    >Here we will create the Creatures Stats<

    open
    MinLevel
    Your desired minLevel

    We will use ' 78 '

    MaxLevel
    Your desired maxLevel

    We will use ' 80 '

    Faction
    Factions - World of Warcraft - Look here and click on a faction you want
    The faction can be found by looking in the url when choosing a faction.
    ex. Wowhead: World of Warcraft Database910<-- Blood of Nozdormu Faction

    We will use ' 910 ' for this.

    MinHealth
    Your desired Health Ammount

    We will use ' 10000000 '

    MaxHealth

    Your desired Health Ammount

    We will use ' 12000000 '

    Mana

    Your desired Mana Amount

    we will use ' 10000000 '

    Scale
    Your desired mob size

    Set to ' 1 '

    npcflags
    This will be what you flag your NPC
    http://www.mangosproject.org/~wrs/tools/flags.php - this tool will generate the Flag ID for your creature.

    We will use ' 1024 ' which is tabard Vendorr

    attackTime

    Your desired attack time

    mindamage
    Your desired Minimum Damage

    We will use ' 1000 '

    maxdamage
    Your desired Maximum Damage

    We will use ' 1400 '

    rangedattacktime

    Your desired attack time

    we will use ' 2400 ' which is 2.4 seconds

    rangedmindamage

    Your desired minimum ranged damage

    We Will use ' 0 '

    rangedmaxdamage
    Your desired maximum ranged damage

    We Will use ' 0 '

    **NOTE** I haven't found the ranged attack speed/dmg to affect the damage of the mob, but I would put it in just in case.

    Mountdisplayid
    This will be the Display ID if it has a mount
    We Will use ' 0 '

    From Itemslot Display to item3info

    Set all to ' 0 '

    Respawn Tme
    Your desired respawn time (miliseconds i think) Default is 360000

    For this I will set to ' 500000 '

    All resistances 0-6
    Your desired mob resistances

    I will set them all to ' 0 '

    Combat reach

    Set to ' 1 '

    Bounding radius

    Set to ' 1 '


    Auras
    Leave it blank

    Boss
    Set to ' 1 ' if you want boss
    Set to ' 0 ' if you don't want a boss

    I will set to ' 0 '

    Money
    Your desired ammount of money dropped by the mob

    I will set to ' 0 '

    Invisibilty_type
    set to ' 0 '

    Death_stats
    set to ' 0 '

    Code:
    INSERT INTO`creature_proto` VALUES(`entry`,`minlevel`,`maxlevel`,`faction`,`minhealth`,`maxhealth`,`mana`,`scale`,`npcflags`,`attacktime`,`mindamage`,`maxdamage`,`rangedattacktime`,`rangedmindamage`,`rangedmaxdamage`,`mountdisplayid`,`item1slotdisplay`,`item1info1`,`item1info2`,`item2slotdisplay`,`item2info1`,`item2info2`,`item3slotdisplay`,`item3info1`,`item3info2`,`respawntime`,`resistance0_armor`,`resistance1`,`resistance2`,`resistance3`,`resistance4`,`resistance5`,`resistance6`,`combat_reach`,`bounding_radius`,`auras`,`boss`,`money`,`invisibility_type`,`death_state`)
    Last edited by JulianX; 08-28-2007 at 07:36 AM.

    How to Make A Custom Mob
  2. #2
    Phase228's Avatar Member
    Reputation
    352
    Join Date
    Jan 2007
    Posts
    1,502
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    good guide =D
    and i have to check out ascent >.<
    Hey Piggy



  3. #3
    JulianX's Avatar Contributor
    Reputation
    106
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Ascent is Antrix......as well as Antrix is Ascent.

  4. #4
    ---free_kill---'s Avatar Member
    Reputation
    10
    Join Date
    Mar 2007
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    lol yup but ascent has more things to it (more .conf ffile stuff to edit and things)

  5. #5
    JulianX's Avatar Contributor
    Reputation
    106
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Originally Posted by ---free_kill--- View Post
    lol yup but ascent has more things to it (more .conf ffile stuff to edit and things)
    no..... if it was still antrix it would be the same the only thing that changed was the name everything else is the same the Emulator is the same, the configs were the same as they are now as they were for antrix, they just maybe added a few more lines and changed the name.

  6. #6
    Chrispee's Avatar The True Repacker


    Reputation
    686
    Join Date
    Mar 2007
    Posts
    931
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    yeah its just an updated rev thas all that supports latest db




  7. #7
    22diehard22's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep +rep

  8. #8
    Herzeleid's Avatar Banned
    Reputation
    77
    Join Date
    May 2007
    Posts
    820
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    you can't rep.

    Nice guide btw.
    I Wonder why Errage, Dragonsky, and Conflag Pretend to Be Girls. Little Creepy in my Opinion.

  9. #9
    Dragut's Avatar Member
    Reputation
    4
    Join Date
    Aug 2007
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    This is exactly the same guide melikeme wrote on ragezone isn't it? Correct me if im wrong.

    One question though. Is there any difference doing this in navicat?

  10. #10
    JulianX's Avatar Contributor
    Reputation
    106
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Yah he took my guides that n00b, after all my threads were deleted AGAIN. So I am leaving that forum for a while.

  11. #11
    starse24's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Hallo. I wonder how do add what items the mobs drops ?

  12. #12
    Dragut's Avatar Member
    Reputation
    4
    Join Date
    Aug 2007
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Originally Posted by JulianX View Post
    Yah he took my guides that n00b, after all my threads were deleted AGAIN. So I am leaving that forum for a while.
    Oh ok, my bad then.

  13. #13
    Equ1N0X's Avatar Contributor
    Reputation
    148
    Join Date
    Mar 2007
    Posts
    1,197
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    Hallo. I wonder how do add what items the mobs drops ?
    I believe theres another table for that. cant check atm because still executing a huge database im using.

  14. #14
    montoroz's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    i use the creature_loot entryid(the id of the mob) itemid(the item the mob drops) percent bah u know

  15. #15
    kc102's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to Make A Custom Mob

    I know this has been asked but I haven't been able to get an answer.
    (I searched)
    Error Code : 1054
    Unknown column '99000' in 'field list'
    (0 ms taken)
    I'm not sure what to do. =/
    INSERT INTO `creature_proto` (`entry`,`minlevel`,`maxlevel`,`faction`,`minhealth`,`maxhealth`,`mana`,`scale`, `npcflags`,`attacktime`,`mindamage`,`maxdamage`,`rangedattacktime`,`rangedmindam age`,`rangedmaxdamage`,`mountdisplayid`,`item1slotdisplay`,`item1info1`,`item1in fo2`,`item2slotdisplay`,`item2info1`,`item2info2`,`item3slotdisplay`,`item3info1 `,`item3info2`,`respawntime`,`resistance0_armor`,`resistance1`,`resistance2`,`re sistance3`,`resistance4`,`resistance5`,`resistance6`,`combat_reach`,`bounding_ra dius`,`auras`,`boss`,`money`,`invisibility_type`,`death_state`)
    VALUES (`99000`,`500`,`500`,`0`,`7500000`,`7500000`,`10000`,`1.5`,`0`,`1500`,`4000`,`90 00`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`0`,`1000000`,`0`,`0`,`0`,`0 `,`0`,`0`,`0`,`1`,`1`,``,`1`,`10000000`,`0`,`0`)
    Message me for Basic Private Server Setup help.

Page 1 of 2 12 LastLast

Similar Threads

  1. How To Make A Custom Portal easy Newb Friendy Tutorial pWd By Winckler
    By winckler in forum WoW EMU Guides & Tutorials
    Replies: 34
    Last Post: 10-05-2008, 10:50 PM
  2. How to make a custom portal easy!
    By pooooo132 in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 03-20-2008, 08:59 PM
  3. [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
  4. How to Make a Custom Graveyard
    By JulianX in forum WoW EMU Guides & Tutorials
    Replies: 15
    Last Post: 11-16-2007, 09:32 PM
  5. How to make a custom vendor quick
    By cylas in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 11-02-2007, 01:09 PM
All times are GMT -5. The time now is 05:32 PM. 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