Search the Community

Showing results for tags 'Map'.



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 58 results

  1. Version 0.0.2

    163 downloads

    A Blender Scene with an Alphamap Generator and the Original ADT Size. USED ADDONS BLENDER: A.N.T. Official Blender Addon, WoW Blender Studio, UNITY: Terrain Tools Unity works extremely well with the Terrain Generation using the 2019 Version in combination with the Terrain Tools and a Terrain Export Script and the Alpha Generator from Blender you can take any terrain shape from any Expansion and print it into a Unity Terrain aswell Texturing. The Terrain inside the Grid is 1 ADT. To get the Raw data out of the Terrain, on the top you can export the Terrain as .OBJ and with the Terrain Tools under the Menu Asset/Terrain Tool you can export your texture Layers as RGB the PNG is in a weird format, open it with your favourite Image Editor and Seperate the Image by Color, RGB and there are now the 3 Texture Layers-> Desaturate them and theyre ready to use for FUTA. To Convert the Terrain to an ADT use the ObjtoADT: OBJtoADT
  2. I'm currently testing a down-ported maelstrom map from 6.x to 3.3.5a that I made and for some reason it shows different in Noggit then in my client. Screenshot from Noggit: https://imgur.com/a/1ejnmzP Screenshot from WoW: https://imgur.com/a/50CP9fc Would anyone have any ideas as to why this might be happening and how to fix it? I have tired searching for hints but found none. Any help would be much appreciated. P.S I have attached my patch if anyone wants to look at it and try to help me fix this. Patch-Z.mpq
  3. Hi there, Today I'd like to share some of my knowledge regarded to creating a working world map in-game. I will try to cover the most basic things, but I have to admit there are still some unknowns to me such as clickable zones on the world map, however, I 'd like to cover those and continents map in the future. In this tutorial I will cover a basic in-game map creation for GM Island. Required tools: Dbc Editor MPQ Editor Photoshop or any other image editor (I myself use Photofiltre) World Map Tutorial Package - download link down below (I recommend you downloading this, because I think it is useful for you to reverse engineers the stuff done in present tutorial). Link to the source: https://mega.nz/#!zUpxlYpK!ctrulp0IpFncI8FYAOFsLwm64PPn9lZyzXSQkNaJ7RQ (Either copy the link with the yellow decription key to your browser, or use the decription key in yellow to acces the file.) Difficulty - Easy Estimated time - 15-25 minutes Before sinking teeth into technical details concerning map implementation you might want to check out a WoW Map Template by Balkron and a short video attached to it - So first of all some theory. When it comes to Dbc files what really matters to us right now is WorldMapArea.dbc. This Dbc looks somethings like this: Now to some collum information: 2. - this collum refers to map.dbc and literally says on which map is this world map going to be placed (1 stands for Kalimdor). 3. - this one refers to the area name (the dbc number), in this case it is 876 (GM Island). 4. - the map file name - this just refers to your file names, so if I decide to call it GmIsland all the files will have to named that way - GmIsland_1.blp, GmIsland_2.blp... 5. - upper y coordinate of your map (serves coordinates). 6. - lower y coordinate of your map (serves coordinates). 7. - upper x coordinate of your map (serves coordinates). 8. - lower x coordinate of your map (serves coordinates). 9. - has to be -1? 10., 11. - has to be 0? So this was some Dbc stuff. Now let's move to the real map stuff. Obviously what you need to is to create yourself a world map, Skarn has covered this topic some time ago, there is a link to his tutorial mentioned above if you need to create a map I recommend you going there. But now comes the tidious stuff. In order to make your map working you have to divide it into 12 256x256 images and name them just like this - GmIsland1.blp, GmIsland2.blp, this however, comes for GmIsland map, if you name your map in WorldAreaMap.dbc TelAbim you have to name your files TelAbim1.blp and so on. When it comes to chronology you have to follow the one shown in the picture down below. So GmIsland1.blp represents sector 1 and so on. This is obviously some really boring stuff, but it is essential. In addition, I think it is good for you to know that all the segments and the right (4, 8, 12) and all those on the bottom (9, 10, 11 ,12) have to be transparent and won't take the entire 256x256 area. Skarn has thought of this when making his map templates, so you don't really have to worry about this one. Now we need to put all the files into a patch, so that the game can loads those. The Dbc stuff is kind of obvious, you put that into DBFilesClient folder, and as for the blp files you have follow this chronology :Interface/WorldMap/GmIsland (Dbc name of your map)/GmIsland1.blp ... So once we are done with all of this, we can check the map in-game and see if it works. The maps seems to be working. If you are trying to create a world map for yourself, you should start by taking down the map coordinates (in-game or in the Noggit) and then according to that create the map. I hope this quick tutorial was helpful in some ways, and hopefully I will find myself some more time to extend it one day. Maybe I could cover making a new continent or making a zone clickable on world map. Link to the source patch - https://mega.nz/#!zUpxlYpK!ctrulp0IpFncI8FYAOFsLwm64PPn9lZyzXSQkNaJ7RQ (Either copy the link with the yellow decription key to your browser, or use the decription key in yellow to acces the file.) If you have some questions, or something doesn't seem to be clear, or perhaps doesn't work at all, do not hesitate and write it down, I will try taking a look at it. Update #1: December 2 2023 - Some minor tweaks & addition of link to Balkron's WoW Subzone Template Package and video.
  4. Version 3.0.0

    445 downloads

    More information on the map like pics or other things can be found here: So I decided to release this map so the other could use it for whatever purposes, if anyone decides to distribute or publish maybe another version of it please give the credits to the author. Ports(trinity): .go xyz 13914.4 13006.4 15.5053 806
  5. Hey there, I haven't been active for a while, mostly for personal reasons, though I've been visiting the site every day. I'm here to show you a map I made for quite a while, I used some new techniques in texturing and terraining hope you like it, also please read the story. Millennias ago, lived a mystical lone creature with the size and power greater than a titan's. They say his name was Mievak and it used to wander the universe searching for one of it's kind. One day after an endless search he finally found his mate,named Vuthinda. They lived in a small unknow planet where they built their home and dreamed about their future. But one day when the war between the Titans and Demons was at it's peak Vuthinda was caught in the middle of a battle, powerless and by the heat of battle she died.Heartbroken and depressed Mievak killed and enslaved both titans and demons, hoping in vain to somehow ease the pain which was tearing his heart apart. None were to stand his aching wrath. But his untold pain was soon to come to an end, when one day he met an Old God who would end his agony by killing his pain causes, thus wiping his dearest memories leaving but a mere image of his loving wife. Mievak soon came to his senses revealing his true self, a twisted beign, a dark corrupting creature hidden beneath his sturdy bones and soft flesh. Under an innocent look, under a pair of beautiful love-seeking eyes, he is there, ready to torment mortal's souls. He is waiting!
  6. Bardh

    Hidden Town

    Hello Model-Changers, this is a map made by me yesterday, it's not fully finished, but it shows much, it shows a hidden camp, inside a dark forest, couldn't yet name it. Hope you like it. P.S Textures made by hand.
  7. Version 3.0

    176 downloads

    This is my empty world map parchment of ground and ocean, restored from multiple zones of blizzard. This will facilitate the life of those who create own maps I usually use this patterns for my maps of custom zones Added in 3.0:
  8. Hey, hope you're all doing well, me and my brother made a map, in fact this map was started long ago but I've been very busy and barely found the time to finish it, so I'm showing you my progress. It is an island, contains a small village, an apothecary "post",forests a road build upon a dried river bed etc. Hope you like it, do not hesitate to leave any comments,suggestions criticism etc.The images a bit messed up, so sometimes you see a village sometimes a shore, so be awared. Hopefully I could upload all the images here, cuz in Modcraft i could upload only 30 of them, which aren't a few but I wanted people to know the hard work I did. Thanks!