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: [Model edit] New races in Arcemu?  (Read 1907 times)

Anonymous

  • Guest
[Model edit] New races in Arcemu?
« 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 :(



P.S: Account Recovery Dosent work. i tryed to restore my account "Nupper" but it says not found
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: [Model edit] New races in Arcemu?
« Reply #1 on: November 09, 2011, 11:24:07 pm »
Hardcoded in the core. You need to update the Core in c++ on 3 positions.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
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

Anonymous

  • Guest
Re: [Model edit] New races in Arcemu?
« Reply #2 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?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: [Model edit] New races in Arcemu?
« Reply #3 on: November 09, 2011, 11:58:52 pm »
Yes :)

Just search for Drenai or how the are spelled ;)
And MAX_RACE
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
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

Anonymous

  • Guest
Re: [Model edit] New races in Arcemu?
« Reply #4 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
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

cookta2012

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 10
    • View Profile
Re: [Model edit] New races in Arcemu?
« Reply #5 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
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Chao,
Troy Cook