Hello & Welcome to our community. Is this your first visit? Register
Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Likes Likes:  0
Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Contributor
    Lbniese's Avatar
    Join Date
    Aug 2009
    Location
    C# Developer
    Posts
    381
    Post Thanks / Like
    Rep Power
    16
    Reputation
    91

    [MegaTuT] How to make Custom Instance


    Register to remove this ad
    Hello everyone. This is my first ACTUAL tutorial. I will be working on this post for a few days. I do not see specific tut's on this topic. So I will show people how to make their OWN custom instance.
    -------------------------------
    What You need :
    -WoW-V
    -DB Acsess
    -Core (to put scripts in your script folder)
    -------------------------------
    0-1: Overview

    0-2: Organizing

    0-3: Making NPC's
    -Naming NPC's

    0-4: Making Loot Tables
    -Custom Items
    0-5: LUA Scripting

    0-6: Spawning

    0-7: Optional SPash
    ---------------------------------------------

    0-1: Overview

    -Okay, so you want to make and script a custom instance that every player will enjoy? You came to the right Tutorial! During this process, you will need the skills of anything from a brain, to LUA scripting. Depending on how big you want your instance to be, it can be easy. Well before you do anything, you need to choose an area to make your instance. My suggestion would be an instance where people do not normally use.

    0-2: Getting Organized

    -Here is your first ACTUAL step. You must get a bit organized. I suggest going to the "My Documents" folder and creating a new folder inside that. You can name that whatever, but just remember what you named it. For example, "Jarg's Darkness Lair" <---- lol. Anyway, this folder is where you will be putting ALL of your custom instance NPC's, LUA scripts, or special notes.

    0-3: Making the NPC's

    -First thing you do for making your instance awsome is making the NPC's. The NPC's are what makes the instance, well, an instance. They set the story and background for your instance. So go to WoW-V http://wow-v.com/ and make an account. Afterwards go to >http://wow-v.com/create.php?tool=mob<
    NPC creator)
    Fill out the following
    -Name (more about this later)
    -Entry ID ( I suggest a big and random number)
    -Rank (Make it Rare Elite)
    -Display ID (Make your NPC fit the setting of your Instance)
    -Faction (Hostile)
    I think you have SOME intelligence to fill out the rest yourself. After you fill out the required fields, press submit and click the green "Download" button. Click the Emu core your server runs with. For example "ArcEmu". Now make sure you remember the ENTRY ID you set for that NPC. Anyway, open up your database editor, for example "Heidi SQL". Execute the SQL for the NPC you made for the instance. Repeat this step for each NPC you want in your instance.

    -Naming Your NPC's

    -The NPC naming part can be hard at times if you have not figured out exactly what you want your instance setting to be. So this short chapter may enlighten you. Ok, well its now or never. Figure out what you want your instance setting to be NOW. Let's say you want your instance to be Scourge themed. You might name your NPC "Deathlord Roka" Lol Roka is just a random name. But Your begginning part of the name is all that counts.

    0-4: Creating Loot Tables

    -Creating Custom Items

    First, you need to create items before you put them in the NPC"s. So here is what you do. I explained above that you need a theme picked out. Now, make an item corresponding to your NPC's. For example, my NPC name is Killerman. Now if I wanted him to drop custom items, I'd atleast make the stats and name matching his name and look and spells that he uses. So since his name is "Killerman" my item name would be "Killerman's Axe" and it's stats would match Killerman's stats. It's hard to explain, but the name and stats are up to you completely. I'm just telling you the Blizzlike way. By the way make your custom items here http://wow-v.com/create.php PUT CUSTOM ITEMS IN YOUR FOLDER IN "MY DOCUMENTS" FOR ORGANIZATION

    -Creating Loot Tables

    Loot tables are the items that drop once you kill the NPC. You must have already executed the items you want the NPC to drop in order for this step to work. Now, go to this link >http://wow-v.com/create.php?tool=loot< The loot creater on WoW-V creates the SQL for you. It's a pretty neat new feature. I really like it. Anyway, for this part, you need the ENTRY ID of the NPC you made earlier. For the first box in the loot creator, you need the ENTRY ID of your NPC. Type that in there. When it asks for your Item Entry ID, type in the entry ID of the item you would like to drop. For the % Chance option, fill in how often you want that item to drop. For example, I want "Martin Thunder" to drop 20% of the time. The Minamal and Maximal amount options are for how many quantity's of that item you want to drop. Like "Martin Thunder" drops at 20% atleast 4 times per kill. If you know what I mean. It's hard to explain. For FFA option, just make it "NO" Click submit and download the batch corresponding with your Emu Core. Execute this SQL file into your "world" database.

    0-5: LUA Scripting (oh boy)

    -I'm not an expert at this, but their are plenty of other guides on this subject. For now, I'm going to make it sweet and simple. Let's say my main boss had no spells (kinda lame). But anyway, you don't want your NPC to cast spells but you want him to say something during combat. Then this is what you do:



    Let's pretend my bosses name is "Evilman" and his entry ID is "111111"


    Code:
    function evilman_OnCombat(Unit, Event) Unit:SendChatMessage(12, 0, "You are mine!!!")endfunction evilman_OnLeaveCombat(Unit, Event) Unit:RemoveEvents() Unit:SendChatMessage(11, 0, "Wussy's. Go cry to yer mom.") endfunction evilman_OnKilledTarget(Unit, Event) Unit:SendChatMessage(12, 0, "So much for killing me. Muahaha") endRegisterUnitEvent(111111, 1, "evilman_OnCombat")RegisterUnitEvent(111111, 2, "evilman_OnLeaveCombat")RegisterUnitEvent(1111 11, 3, "evilman_OnKilledTarget")RegisterUnitEvent(111 111, 4, "evilman_OnDied")
    And there you go. A SIMPLE LUA script. Of course you can modify some of these parts to fit your needs, just find some guides.

    0-6: Spawning & Where to Spawn

    -The most important part of this whole concept. So players don't have trouble with respawn times and kill steals, I suggest picking an instance players do not use much. I suggest making the area of the instance match your instance theme. Like since my instance theme is Scourge, I would make mine in Scarlet Monastary, because that is the only place I know that is an instance that goes a little bit with undead.

    -Spawning The Mobs

    -Ok, when you spawn your mobs, make sure not to cluster 10 npc's in one little group. That's insain, unless you want that to be a 40 man instance, I wouldn't attempt that. My suggestions to you is:
    1. Even out the levels of Mobs
    2.Space Mobs out
    3. Keep Mobs away from tough bosses
    4. Don't put one NPC throughout the ENTIRE instance.

    That is your last step in making your custom instance. If you would like to do more with your instance, please see the chapter below. I hope this tutorial helped you in some way. I hope you guys liked this. This is my first tutorial.

    0-7: Optional Spash
    -------------------
    ----- Quests------
    -------------------
    1. If you want to make a custom quest, I would do that. When you make a quest for your instance, include a big reward, depending on how hard that instance is. I enjoy those servers who have OP rewards for easy, one manned raids. Please don't be like them lol.
    -------------------
    -----Fights--------
    -------------------
    1. This part has not much in the role of instances, but this is for if you want two or more NPC's to attack eachother without killing one another. This chapter is intended for fights that do not include player killing NPC. This fight TuT is on NPC killing NPC. First, go to http://wow-v.com/create.php?tool=mob. Then make an NPC that has A LOT of health. Then make the damage very small. Execute the SQL for the NPC, restart your server, spawn the NPC. Make another NPC with same stats but different Name and display. Now set one npc's fraction to 70. and the other npc's fraction to 1. You can do this by doing .mod fraction 70 or .mod fraction 1
    Congrats, you have a fight. Lol SIMPLE


    › See More: [MegaTuT] How to make Custom Instance



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #2
    Contributor
    StickyIcky's Avatar
    Join Date
    Jul 2008
    Location
    127.0.0.1
    Posts
    747
    Post Thanks / Like
    Rep Power
    18
    Reputation
    188
    This is not a "custom" instance, its a instance "remix".

  4. #3
    Senior Sergeant
    Milation's Avatar
    Join Date
    Aug 2008
    Posts
    109
    Post Thanks / Like
    Rep Power
    16
    Reputation
    73
    mhm, fine, but not as cool as my swiming pool.
    noRep.

  5. #4
    Contributor
    enegue's Avatar
    Join Date
    Aug 2008
    Location
    Before God
    Posts
    715
    Post Thanks / Like
    Rep Power
    17
    Reputation
    106
    I saw this post on *******.
    me if I have helped you in anyway ^^ Example: Sharing a repack, answering questions... Well you know the rest xD. As long as I help you!

  6. #5
    Contributor
    Lbniese's Avatar
    Join Date
    Aug 2009
    Location
    C# Developer
    Posts
    381
    Post Thanks / Like
    Rep Power
    16
    Reputation
    91
    maybe another one then, cause i self made it... long time ago) maybe its me... cause i also got a account on ******* but i dont use it anymore :P

  7. #6
    Beginner

    Join Date
    Sep 2009
    Posts
    6
    Post Thanks / Like
    Rep Power
    15
    Reputation
    1
    Looks great. =)

  8. #7
    Scout
    B00M's Avatar
    Join Date
    Sep 2009
    Posts
    17
    Post Thanks / Like
    Rep Power
    15
    Reputation
    5
    I like this guide... - Good work Lbniese ™

  9. #8
    Scout
    B00M's Avatar
    Join Date
    Sep 2009
    Posts
    17
    Post Thanks / Like
    Rep Power
    15
    Reputation
    5
    Quote Originally Posted by WigSplitta View Post
    This is not a "custom" instance, its a instance "remix".
    Yes this is a Mix

  10. #9
    Contributor
    Lbniese's Avatar
    Join Date
    Aug 2009
    Location
    C# Developer
    Posts
    381
    Post Thanks / Like
    Rep Power
    16
    Reputation
    91
    Thanks Boom

  11. #10
    Beginner

    Join Date
    Sep 2009
    Posts
    10
    Post Thanks / Like
    Rep Power
    15
    Reputation
    1

    Register to remove this ad
    thanks for posting this

 

 
Page 1 of 2 12 LastLast

Visitors found this page by searching for:

trinitycore custom instance

trinity create instance

how to make a custom instance trinitycore

how to make an instance arcemu

trinitycore make custom instance

trinity core custom instance portal

wow ascent how to create an instance

trinitycore create instance

Trniity WoW How to make a instance

trinitycore how to make instance

how to make a custom instance trinity

trinitycore make quest instancetrinity core how to make an instancehow to create a instance in trinity serverhow to make a custom bg in wow trinitycreate portalwow how to create instancemaking an instance on wow on Trinity corewow how to make a custom instancecreating wow instancetrinity custom instanchow to make a arcemu instancetrinity create custom instancehow to make portal custom instancewow trinitycore how to make custom instancehow to create custom instance wowcreate a themetrinity core add instance entrancehow to create custom instances wowwow custom instance trinty corehow to make custom instance wowhow to make a custom instance wowhow to make a custom instance in wowhow to make a custom instance trinity corenpc spawn into instance trinity corecustom instance arcemuhow to make a custom instance portal trinitywow custom instance portalTrinity Core Custom instanceswow how to make an instance entrance trinitycoreinstance create arcemuwow custom instancehow to make instance in arcemutrinitycore creating custom instancestrinity core how to create a instance portalhow to make custom instancemake new instance arcemutrinity core custom instancemangos how to make a custom instancewow create instance
SEO Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 04:28 AM.
Powered by vBulletin® Copyright ©2000-2024, Jelsoft Enterprises Ltd.
See More links by ForumSetup.net. Feedback Buttons provided by Advanced Post Thanks / Like (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
vBulletin Licensed to: MMOPro.org