Level party solo

03/05/2022 17:08 sh0kzy#1
Hey, where I can find the functionality of the party only getting exp when having 2 people in an area? Wanna change it to be possible to level the party solo but cant find the if statement or declaration for it in all the party exp functions.
04/20/2022 04:41 eunasciem#2
mover.cpp

Code:
if( 1 < nMemberSize )	
					pEnemy->AddExperienceParty( pDead, fExpValuePerson, pMoverProp, fFxpValue, pParty, apMember, &nTotalLevel, &nMaxLevel10, &nMaxLevel, &nMemberSize );
				else	
					pEnemy->AddExperienceSolo( fExpValuePerson, pMoverProp, fFxpValue, TRUE );
change if( 1 < nMemberSize ) to if( 0 < nMemberSize ) and it should work (I've tested and worked)

Idk how the exp would be with such a minor edit.. you should make some tests and look around the code or make some changes to it.