This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: [SOLVED] How can I create a custom mount ?  (Read 2707 times)

Demacron

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 8
    • View Profile
[SOLVED] How can I create a custom mount ?
« 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
« Last Edit: February 23, 2015, 07:55:07 pm by Admin »

Demacron

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 8
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #1 on: February 21, 2015, 09:22:59 pm »
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: .
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Dottore

  • Registred Member
  • Loreweaver
  • *****
  • Posts: 114
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #2 on: February 21, 2015, 09:27:50 pm »
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
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Demacron

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 8
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #3 on: February 21, 2015, 09:51:18 pm »
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 ?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Dottore

  • Registred Member
  • Loreweaver
  • *****
  • Posts: 114
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #4 on: February 22, 2015, 12:40:43 am »
Write a reply to that topic or send him a pm.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Demacron

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 8
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #5 on: February 22, 2015, 01:06:13 am »
Never mind, I'm going on holiday for 2 weeks, maybe I'll continue later on  :roll: .
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

phantomx

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 615
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #6 on: February 22, 2015, 01:19:13 am »
Quote from: "Demacron"
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.

« Last Edit: January 01, 1970, 01:00:00 am by Admin »
[wimg]http://i.imgur.com/6fxUQL1.gif[/wimg]

Demacron

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 8
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #7 on: February 22, 2015, 09:52:30 am »
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
-
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 topic. I just edited something since you want to create a mount not a vehicle.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Dottore

  • Registred Member
  • Loreweaver
  • *****
  • Posts: 114
    • View Profile
Re: [Question] How can I create a custom mount ?
« Reply #8 on: February 22, 2015, 09:59:52 pm »
Thank you very much!  :D
« Last Edit: January 01, 1970, 01:00:00 am by Admin »