11 minutes ago, TheReturnOfMagic said:
Hello ?
i have a question where can i change the start item + to +15 in my DBProcess_createChar.cpp
i found a_plus in sql3 but idk what i have to change ?
and where can i change the row for the start items they are in the last row but i want them in the first row ?
thank you in advance
Find this:
if (itemproto->getItemWearing() >= 0)
{
wearInven_sql2 += boost:

tr(boost::format(" (%d, %d, %d, %d, %d, '%s', %d, %d), ") % char_index % itemproto->getItemWearing() % itemidx[i] % 0 % 0 % serial % used % 0);
}
Chage to this:
if (itemproto->getItemWearing() >= 0)
{
wearInven_sql2 += boost:

tr(boost::format(" (%d, %d, %d, %d, %d, '%s', %d, %d), ") % char_index % itemproto->getItemWearing() % itemidx[i] % 15 % 0 % serial % used % 0);
}
Where I put 15 is where the start item + goes.