Edit Start Items

01/26/2021 14:29 TheReturnOfMagic#1
Hello,
does anybody know where i can edit in EP4 the start items when you create a new char, and where i can change the max + of the armor and weapon of the start items :)
thank you in advance
TheReturnOfMagic :)
01/26/2021 18:50 Desarija#2
DBProcess_CreateChar.cpp

Around line 790 in my source

Quote:
static int nItemList[2][4] =
{
{5958, 2658, 2659, 6085},
{ 5, 5, 5, 1}
};
nItemCount = 4;
The equipment is a little above that part:
Quote:
static int itemsForTitan[4][titancount] =
{
{ 72, 2, 12, 3, 4, 8, 4790, 6080}, // item_idx
{ 0, 1, 2, 3, 5, 6, -1, -1}, // wearpos
{ 1, 1, 1, 1, 1, 1, 1, 1} // count
};
The + is where the query for this table is executed (line 624 in my code)
01/26/2021 19:59 TheReturnOfMagic#3
Thank you!:)