Modcraft - The community dedicated to quality WoW modding!
Wrath of the Lich King Modding => Serverside Modding => Topic started by: Demacron on February 21, 2015, 12:58:05 pm
-
Hi everyone,
This is the first forum I subscribe to, so I apologize now for every mistake i'll do regarding wrong sections etc.
It's been a week since I started working with WoW databases, dbc/mpq files, never done that before.
I've searched everywhere, it seems that every tutorial that teach you how to create a custom mount, alter the Display ID of an already existing one.
I would like to learn how to create an item, that once clicked summon a regular mount (which disappear once indoor and things like that), without losing an already existing one.
I've seen many tutorials, but none was written in depth, anyway once you create a mount, i've read something about mount position and things like that, so I would like to learn that too.
INFO:
I'm working on a 3.3.5a Trinity Core Server.
If you suggest me a more appropriate title, I'll change this one.
If you teach me the right session in which this kind of questions belong to I'll move there.
P.S.
It's really a week that I'm trying to do this, so even a link of other posts explaining this are welcome, I can't find one.
Sorry for my bad english, I'm still learning :P
-
Managed to create custom mounts, now the only thing i need to fix is the mount point, I keep morphing myself into the npc, istead of riding it :shock: .
-
I would be happy if you could write a tutorial or some kind of guide how did you do it because i tried like 20 times but i did not managed to create a working custom mount. :?
Anyways i think this could help you out: viewtopic.php?f=20&t=8916 (http://modcraft.io/viewtopic.php?f=20&t=8916" onclick="window.open(this.href);return false;)
-
I'll write a complete tutorial, but first I need to get ON my mount.. I've already seen the video, it is perfect but even if a change the parameter that "mounts have to 0" to 0, my npc wont change. Can we tag the person who did that video so he see the post and maybe he help us ?
-
Write a reply to that topic or send him a pm.
-
Never mind, I'm going on holiday for 2 weeks, maybe I'll continue later on :roll: .
-
I'll write a complete tutorial, but first I need to get ON my mount.. I've already seen the video, it is perfect but even if a change the parameter that "mounts have to 0" to 0, my npc wont change. Can we tag the person who did that video so he see the post and maybe he help us ?
I'm pretty sure you didn't set a mountpoint other wise you would be showing up on the model and not morphing into it.
Phil explains this in the video and shows you what to do so I'd rewatch it if I were you.
(http://puu.sh/g764Y/12e3c75ceb.png)
-
Thank you Phantomx, I checked it better, and now it works!
For Fekete95, since I don't remember every step I did in order to get the mount done (did lot of random editig and ctrl+z), I suggest you to follow this 2 guides:
Only create the npc (http://modcraft.io/viewtopic.php?f=61&t=1845&p=21126)
-
After that (clone a mount npc, not a vehicle one) do the following:
Step Two: Open Spell.DBC and clone a mount spell to a new row (Use something easy to remember)
Step Thee: Edit the following Columns:
(Using MyDBCEditor and make sure 'Use Zero Based is checked')
110 - EffectMiscValue - this becomes the creature_Template Id that you want to have the player mount
133 - SpellIconID - Set this to the Spell Icon that you want the spell to use.
170 - Description - Self explanatory
187 - ToolTip - Self explanatory
Step Four: Save Spell.DBC and open SkillLineAbility.DBC (This will allow the spell to appear in the Mount UI panel instead of the spellbook.)
Make a new row at the bottom of the DBC.
Set the Columns to the Following:
(Using MyDBCEditor and make sure 'Use Zero Based is checked')
0 - ID - Use the next open ID
1 - SkillLine.DBC - set to 777
2 - Spell.DBC - set to the spell id for your mount spell
7 - RequiredSkillLevel - set to 1
Leave all the rest at zero
Save and make a patch with the new DBCs.
^-- This is a comment wrote by deep6ixed in this (http://modcraft.io/viewtopic.php?f=60&t=7255&p=31940&hilit=mount+add#p31940) topic. I just edited something since you want to create a mount not a vehicle.
-
Thank you very much! :D