Search the Community

Showing results for tags 'mounts'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Important
    • Announcements
    • Getting Started
  • Modding
    • Modeling
    • Level Design
    • Interface
    • Serverside
    • Noggit
    • Miscellaneous
    • Retro-Porting
    • Useful Services
  • Projects
    • Recruitment
    • Paid Work
    • Showcase
    • Machinima
  • Community
    • General
    • Random
    • Gallery
    • Releases
    • The Graveyard

Categories

  • Tools
    • Uncategorized
    • Map Editing
    • Model Editing
    • DBC & DB2 Editing
    • Serverside
    • CASC & MPQ
  • Resources
    • Graphics
    • Uncategorized
    • Models
    • Maps
    • Client Patches
  • 010 Editor Scripts and Templates
  • Noggit Script Brushes

Categories

  • Projects
  • Machinima
  • Software Development

Categories

  • Beginner
    • Русский
    • Deutsch
  • Modeling
    • Česky
    • Français
  • Level Design
  • Interface
  • Serverside
  • Miscellaneous
    • Česky
    • Français
  • Retro-Porting
  • Machinima

Categories

  • Tutorials
  • Timelapse
  • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Discord


Twitter


Skype

Found 7 results

  1. Version 1.0.0

    106 downloads

    Hello dear modders, This patch was created for Warshard , this is already quite some time ago and this was WIP. (so dont expect this patch to be fully completed, i'm pretty sure some of the work isn't finished yet) I do not have a Cata client anymore, nor am i working on this. But most of the models or DBC should be there & work. Just found these patches on MEGA thought i'd share them before I delete em. I was working on the sounds and the animations back in the days, these needs a bit of fixing. But thought i'd share the work that's already done incase people are intrested in this.
  2. Hello dear modders, I'm still quite new but own alot of my "knowledge" thanks to this community , so I thought lets make a contribution. At the moment i'm working to retroport shadowlands creatures and mounts to wotlk 3.3.5a. Some models work perfectly in modelviewer but crash wow. Any idea's? Anybody has any idea why these models load perfectly in modelviewer (3.3.5a) and not ingame? the dbc & sql wont be accurate, i use similar models to do the clientside. When I have more mounts i'll release the patch/dbc/sql 2nd one isnt a mount but was (paid) requested somewhere on here so I thought i'd add it in here.
  3. Version 1.1.0

    1,351 downloads

    Dear Modders, I've learned alot mainly thanks to this community, and since I was experimenting with the shadowlands creatures and mounts to retro port them to Wotlk, and we'll it's going pretty good at the moment. So why not share it, i'll post updates from time to time since i'm pretty busy with wow modding at the moment. REMEMBER TO LIKE & SUBSCRIBE (might be wrong platform) Release related to : NOTE: The patch contains the models & dbc files. The dbc files are far from accurate and were just placed to make the models show up. Question: Some models like the hands work perfectly in Wow model viewer, however morphing to that display id results in a crash. any idea's?
  4. Well, let's see the simplest way to put custom sounds for your server, or lua scripts. (could also teach how to do that :)) What do we need? -Patience -WDBX Editor -A local server to test that everything works fine. LET'S START ------------------------------------------------------------------------------------------------- 1. Organize your workplace You may think it's stupid, but it's really useful to know where the tools will be where you'll be working. 2. We will start by making a folder that will be our patch, it can have any name but it IS IMPORTANT that it ends with .MPQ, something like this. 3. Now we are going to work on the parts of our patch. a) our patch will consist of two folders. b) It is important that within the Sound folder, you make another folder, it can have any name, it is only to keep an order since that is what the DBC directory requests. c) We are going to prepare the DBFilesClient folder, for this, we have to move the DBC file whose name is SoundEntries.dbc 4. Now let's get the sounds as such. a) I recommend for creatures/mounts, to use the wowhead sounds. But if this is not what you want, you can download any .mp4 sound and convert it to .ogg in any online converter. b) b) When you have the sound, it will move it to the subfolder inside the Sound folder that is in our patches folder. 5. Start work with the .DBC file a) We open the .DBC with any DBC editor, personally I recommend WDBX Editor. ab) In column 1, the ID will go. ac) in column 3, the name will go, it can be anything. ad) in column 4 the name of the file will go, it is important that you put the type of file at the end. Like this: ae) in column 24 we will put the path of our sound, so that it looks something like this: af) We save the .dbc files 6. To finalize and test our sounds in the game a) We move our patch .dbc file to our local server folder, and reboot. 7. Let's try it! you can use the .play (id) command to play the sound on the server. if all went well, it should be heard. if it says that the sound does not exist make sure you have moved the .dbc file to your local server files. 8. Now that we hear our sound on the server, we can start working on our creature. If your sound did not play, you need to review the steps above. a) To start working on the .dbc files, we need to move three new files to our patch: CreatureModelData.dbc, CreatureDisplayInfo.dbc, CreatureSoundData.dbc, these three files will go in the DBFilesClient folder. b) Let's start working with CreatureSoundData.dbc ba) We will duplicate the last row, and to start modifying we have to know the meaning of each column. bb) To know what each column means, we can use the WDBX editor, I will also give some instructions so that you know what we are talking about. bb1) Column 1: ID bb2) Column 4: Here you will put the ID of the sound you want to play when the creature suffers an injury. bb3) Column 8: Here you will put the ID of the sound you want to play when the creature is standing still, like the roar of the spectral tiger. bb4) Column 10: Here you will put the ID of the sound you want to play when you start a fight with the pet (when calling its aggro) bb5) Column 12: Here you will put the ID of the sound you want to play when the creature plans. bb6) Column 14-18: Here you will put the ID of the sound you want to play when the creature stirs. bb7) Column 19-22: The sound you want to play when the creature hits will go here. Strongly recommending that you use the WDBX Editor if you have any questions on the tables. bc) When you made the changes you think necessary to the CreatureSoundData.dbc file you will save it and close it. 9) Now we will make some changes to CreatureDisplayInfo.dbc, and CreatureModelData.dbc 9a) We will start by checking a column of CreatureDisplayInfo.dbc 9a1) We will check that in column 12, there is the number 0, this is so that it takes the sound directly from CreatureModelData. 9b) We will now make a change to the CreatureModelData.dbc 9b1) In column 13, we'll put the CreatureSoundData id and then save the file. 10) Now, we transform into our creature, and listen to the new sounds!:) If you need extra help, you can message me on discord. Fruitdealer#3760 Thanks to Tyrallis
  5. Version 1.0.0

    1,240 downloads

    Hiya, Today I would like to share with you my mount patch containing at this point 45 mounts going from Cata to Legion retro-ported to Wrath of the lich king. I work on this patch from time to time so be sure to keep an eye out for newer versions. Happy Modding. Poisonleaf
  6. https://www.youtube.com/watch?v=WczmgKg8XRM Download link: Patch+ Model Edit fix: patch-h WoWme:MEGA How to install: Just place patch-h.MPQ into your data folder, copy the WoWme to your wow folder and create a shortcut. Now you launch the game from the WoWme! Any bug report in the post or youtube, or send a notification in the forum. The tbc models will come from: Finsternis- [RELEASE] [WotLk] Character Models(no npc) and [RELEASE] [WotLk] Legion Creature Models for Wotlk Uthil - [RELEASE] [Classic] Imroved Models for 1.12
  7. Hello guys! Im looking some guy which know work in 010Editor and he will be so kind to make some Tutorial HOW TO -> fix creatures from Cata/Wotlk/Legion.............. I mean fix Flying (Swinging wings) Just simply change this swiming animation to flying animation. It would be really nice, because im looking for it for so long, can't find nowhere any clue & nobody can help me with this. So if it will be possible, please just left reply in here or contact me on: adko.turac@gmail.com or im on discord as well : GoldenQo #5577 Thanks! Your GoldenQo