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: [QUESTION] How edit the interface for create more chars?  (Read 1041 times)

Warrior94wow

  • Registred Member
  • MWCS Enthusiast
  • *****
  • Posts: 1
    • View Profile
[QUESTION] How edit the interface for create more chars?
« 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
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

stoneharry

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 617
    • View Profile
Re: [QUESTION] How edit the interface for create more chars?
« Reply #1 on: May 10, 2014, 11:59:16 am »
I really do not think this is possible without binary modifications.

You can see the code that handles this in CharacterSelect.lua

Code: [Select]
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.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »