Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Miscellaneous => Topic started by: Anonymous on November 09, 2011, 10:36:04 pm

Title: [Model edit] New races in Arcemu?
Post by: Anonymous on November 09, 2011, 10:36:04 pm
Im trying to add some new races into arcemu but i cant seem to find out how to add them :(
(http://img171.imageshack.us/img171/8614/wowscrnshot110911210521.jpg)


P.S: Account Recovery Dosent work. i tryed to restore my account "Nupper" but it says not found
Title: Re: [Model edit] New races in Arcemu?
Post by: Steff on November 09, 2011, 11:24:07 pm
Hardcoded in the core. You need to update the Core in c++ on 3 positions.
Title: Re: [Model edit] New races in Arcemu?
Post by: Anonymous on November 09, 2011, 11:30:24 pm
Quote from: "Steff"
Hardcoded in the core. You need to update the Core in c++ on 3 positions.
do you know witch ones?
Title: Re: [Model edit] New races in Arcemu?
Post by: Steff on November 09, 2011, 11:58:52 pm
Yes :)

Just search for Drenai or how the are spelled ;)
And MAX_RACE
Title: Re: [Model edit] New races in Arcemu?
Post by: Anonymous on November 10, 2011, 12:40:51 am
Quote from: "Steff"
Yes :)

Just search for Drenai or how the are spelled ;)
And MAX_RACE

Quote
MAX_RACES = 18;
MAX_CLASSES_PER_RACE = 8;
NUM_CHAR_CUSTOMIZATIONS = 5;
MIN_CHAR_NAME_LENGTH = 2;
CHARACTER_CREATE_ROTATION_START_X = nil;
CHARACTER_CREATE_INITIAL_FACING = nil;

PAID_CHARACTER_CUSTOMIZATION = nil;

FACTION_BACKDROP_COLOR_TABLE = {
   ["Alliance"] = {0.5, 0.5, 0.5, 0.09, 0.09, 0.19},
   ["Horde"] = {0.5, 0.2, 0.2, 0.19, 0.05, 0.05},
};
FRAMES_TO_BACKDROP_COLOR = {
   "CharacterCreateCharacterRace",
   "CharacterCreateCharacterClass",
   "CharacterCreateCharacterFaction",
};
RACE_ICON_TCOORDS = {
   ["HUMAN_MALE"]      = {0, 0.125, 0, 0.25},
   ["DWARF_MALE"]      = {0.125, 0.25, 0, 0.25},
   ["GNOME_MALE"]      = {0.25, 0.375, 0, 0.25},
   ["NIGHTELF_MALE"]   = {0.375, 0.5, 0, 0.25},
   
   ["TAUREN_MALE"]      = {0, 0.125, 0.25, 0.5},
   ["SCOURGE_MALE"]   = {0.125, 0.25, 0.25, 0.5},
   ["TROLL_MALE"]      = {0.25, 0.375, 0.25, 0.5},
   ["ORC_MALE"]      = {0.375, 0.5, 0.25, 0.5},

   ["HUMAN_FEMALE"]   = {0, 0.125, 0.5, 0.75},  
   ["DWARF_FEMALE"]   = {0.125, 0.25, 0.5, 0.75},
   ["GNOME_FEMALE"]   = {0.25, 0.375, 0.5, 0.75},
   ["NIGHTELF_FEMALE"]   = {0.375, 0.5, 0.5, 0.75},
   
   ["TAUREN_FEMALE"]   = {0, 0.125, 0.75, 1.0},  
   ["SCOURGE_FEMALE"]   = {0.125, 0.25, 0.75, 1.0},
   ["TROLL_FEMALE"]   = {0.25, 0.375, 0.75, 1.0},
   ["ORC_FEMALE"]      = {0.375, 0.5, 0.75, 1.0},

   ["BLOODELF_MALE"]   = {0.5, 0.625, 0.25, 0.5},
   ["BLOODELF_FEMALE"]   = {0.5, 0.625, 0.75, 1.0},

   ["DRAENEI_MALE"]   = {0.5, 0.625, 0, 0.25},
   ["DRAENEI_FEMALE"]   = {0.5, 0.625, 0.5, 0.75},
};
CLASS_ICON_TCOORDS = {
   ["WARRIOR"]   = {0, 0.25, 0, 0.25},
   ["MAGE"]   = {0.25, 0.49609375, 0, 0.25},
   ["ROGUE"]   = {0.49609375, 0.7421875, 0, 0.25},
   ["DRUID"]   = {0.7421875, 0.98828125, 0, 0.25},
   ["HUNTER"]   = {0, 0.25, 0.25, 0.5},
   ["SHAMAN"]   = {0.25, 0.49609375, 0.25, 0.5},
   ["PRIEST"]   = {0.49609375, 0.7421875, 0.25, 0.5},
   ["WARLOCK"]   = {0.7421875, 0.98828125, 0.25, 0.5},
   ["PALADIN"]   = {0, 0.25, 0.5, 0.75},
   ["DEATHKNIGHT"]   = {0.25, 0.49609375, 0.5, 0.75},
};
im trying to add all races like like raise of yersa
Title: Re: [Model edit] New races in Arcemu?
Post by: cookta2012 on January 16, 2012, 01:17:10 am
When you add them don't forget that you must add the spells the talent trees and all of that.
:D