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: Modcraft Tutorial > Start here - 00 - Introducing and index  (Read 21315 times)

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Modcraft Tutorial > Start here - 00 - Introducing and index
« on: October 25, 2012, 03:14:47 am »

Introducing



Quote

This tutorial is still under development. If you read the first parts of the tutorial, it will really help you out.
Please give feedback if you don't understand some parts of this tutorial.

WoW modding is a challenging and wide area. For this reason, much reading will be necessary to really get into it and avoid many problems you can run into. I will try to give you every important piece of information in this tutorial series you'll need to start your modding work, as briefly as possible. Modding can be hard, but if you really want to get into it, take your time and follow guidelines. It will prevent you from making mistakes and wasting a lot of time in the future.

Please read the formatting hints below the index!

Index:





Text formatting



I will use the following formatting rules in the series. This will organize stuff and help make the tutorial shorter.
__________________________________________________________________________________________

Two spiky brackets at the start of a line mark a user action:
>>  Open your door and get out if the sun is shining :)
__________________________________________________________________________________________

A path on your hard drive will be written in a single line and formatted bold:
X:WoWModdingToolsDriveLetter
__________________________________________________________________________________________

If you should select an option from an application menu, for example that you should open the File menu
and select New, this is formatted like this.

MENU > File > New
__________________________________________________________________________________________

Technical Information is quoted:
Quote
It is dangerous to place your socks on the bed or on couch corners, because there you often find an entrance to the bad sock dimension.
Once the cloth past this border they are lost forever. That's why you always will have single socks in your cupboard. So take care where you place your stuff.
__________________________________________________________________________________________

Code block for XML, LUA or c++ code:
Code: [Select]
function WorldMapFrame_Update()
local mapFileName, textureHeight = GetMapInfo();
if ( not mapFileName ) then
if ( GetCurrentMapContinent() == WORLDMAP_COSMIC_ID ) then
mapFileName = "Cosmic";
OutlandButton:Show();
AzerothButton:Show();
else
-- Temporary Hack (Temporary meaning 2 yrs, haha)
mapFileName = "World";
OutlandButton:Hide();
AzerothButton:Hide();
end

Taken from original Blizzard file. Read the comment ;)

And now lets start the tutorial!

Next > 01 - Overview how WoW modding works
« Last Edit: October 04, 2019, 07:26:04 pm by Steff »
Please mark as solved if solved.
Don't ask if you could ask a question... JUST ask the Question.
You can send me also offline messages. I will answer if I get online.
Skype: project.modcraft
Discord: steff#6954