Modcraft - The community dedicated to quality WoW modding!
Wrath of the Lich King Modding => Serverside Modding => Topic started by: Warrior94wow on May 10, 2014, 07:05:29 am
-
Hi.
I want to know how to edit my wow client for create more than 10 characters per account. (the limit is 10)
I believe that is something of LUA or XML, but i'm not sure...
I'm interested to create more characters on my account. I use CMaNGOS wotlk with playerbots. I want to invocate more playerbots (obviusly can 10 only)
I need expert help, I know few things about it... Tell me that I do, please.
Greetings
-
I really do not think this is possible without binary modifications.
You can see the code that handles this in CharacterSelect.lua
elseif ( event == "CHARACTER_LIST_UPDATE" ) then
UpdateCharacterList();
CharSelectCharacterName:SetText(GetCharacterInfo(self.selectedIndex));
elseif ( event == "UPDATE_SELECTED_CHARACTER" ) then
local index = ...;
if ( index == 0 ) then
CharSelectCharacterName:SetText("");
else
CharSelectCharacterName:SetText(GetCharacterInfo(index));
self.selectedIndex = index;
end
UpdateCharacterSelection(self);
elseif ( event == "SELECT_LAST_CHARACTER" ) then
self.selectLast = 1;
elseif ( event == "SELECT_FIRST_CHARACTER" ) then
CharacterSelect_SelectCharacter(1, 1);
A lot of binary functions being called that will handle this specific code.
You could quite feasibly reduce the number of char's you can have with client modifications restricting how many you can create and then server side verification. But not increase very easily.