• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook pagefor updates, or we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.)

Help Lvl gap

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 4, 2022
Messages
32
Reaction score
1
Hi where can i remove the drop limit level gapper.

I want lvl 150 chars to still be able to get the drops of the mobs without changing their drop rate due to lvl gaps.

thanks and happy new year to all
 
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
At some point you need to start learning and(or) searching the source itself instead of making alt accounts to ask for help like you have done so in the past. You'll never learn that way.

Anyways.

Code:
CMover::DropItem(

Code:
			if( bAdjDropRate )
			{
				int d	= pAttacker->m_nLevel - (int)lpMoverProp->dwLevel;
				if( d <= 1 )	{	nProbability	= 100;	nPenyaRate	= 100;	}
				else if( d <= 2 )	{	nProbability	= 80;	nPenyaRate	= 100;	}
				else if( d <= 4 )	{	nProbability	= 60;	nPenyaRate	= 80;	}
				else if( d <= 7 )	{	nProbability	= 30;	nPenyaRate	= 65;	}
				else	{	nProbability	= 10;	nPenyaRate	= 50;	}
			}

It's pretty easy to figure out what you need to do here.

Nonetheless, happy new year.
 
Last edited:
Upvote 0
Status
Not open for further replies.
Back
Top