• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Some Rquests

Sir Islam

Never Give Up
Joined
Jun 6, 2008
Messages
504
Solutions
1
Reaction score
116
Location
Suez , Egypt
1 ) I Want To Break Monsters' Hp Limit ... In My Server Max Hp Is About 12 Billion

2 ) unlimited Health and mana of Player the max is About 2.4 Billion i need up it

3 ) after level xxx no gain level and EXPERIENCE
 
Last edited:
so read player.cpp

Code:
void Player::addExperience(uint64_t exp)
{
	uint32_t prevLevel = level;
	uint64_t nextLevelExp = Player::getExpForLevel(level + 1);
	if(Player::getExpForLevel(level) > nextLevelExp)
	{
		//player has reached max level
		levelPercent = 0;
		sendStats();
		return;
	}

	experience += exp;
	while(experience >= nextLevelExp)
	{
		healthMax += vocation->getGain(GAIN_HEALTH);
		health += vocation->getGain(GAIN_HEALTH);
		manaMax += vocation->getGain(GAIN_MANA);
		mana += vocation->getGain(GAIN_MANA);
		capacity += vocation->getGainCap();

		++level;
		nextLevelExp = Player::getExpForLevel(level + 1);
		if(Player::getExpForLevel(level) > nextLevelExp) //player has reached max level
			break;
	}
 
I don't understand why you would want to make a server with exp rate like that anyway... ALL of the servers like that are lame anyway
 
so read player.cpp

Code:
void Player::addExperience(uint64_t exp)
{
	uint32_t prevLevel = level;
	uint64_t nextLevelExp = Player::getExpForLevel(level + 1);
	if(Player::getExpForLevel(level) > nextLevelExp)
	{
		//player has reached max level
		levelPercent = 0;
		sendStats();
		return;
	}

	experience += exp;
	while(experience >= nextLevelExp)
	{
		healthMax += vocation->getGain(GAIN_HEALTH);
		health += vocation->getGain(GAIN_HEALTH);
		manaMax += vocation->getGain(GAIN_MANA);
		mana += vocation->getGain(GAIN_MANA);
		capacity += vocation->getGainCap();

		++level;
		nextLevelExp = Player::getExpForLevel(level + 1);
		if(Player::getExpForLevel(level) > nextLevelExp) //player has reached max level
			break;
	}


that mean?? what should i do with that...Bro
Lua prog
posts:10
join date:Jul 2013..

Bro i know more than you..:) i have made things undone yet..

- - - Updated - - -

I don't understand why you would want to make a server with exp rate like that anyway... ALL of the servers like that are lame anyway

True
 
that mean?? what should i do with that...Bro
Lua prog
posts:10
join date:Jul 2013..

Bro i know more than you..:) i have made things undone yet..

- - - Updated - - -



True

do you think this is only my account in otland?

I have other and I know a lot

I just make this for fun
and
it's not by posts :)

don't think you are better than me
or i'm better than you
it's wrong to be arrogant
 
It's more complex than not caring.......
06.jpg

07.jpg

01.jpg

02.jpg

03.jpg

04.jpg

05.jpg
 
Sir Islam for the lvl break here it is in player.h

Add This Code instead of the original one
Code:
uint64_t exp = ((50ULL * (lv+1ULL) / 3ULL - 100ULL) * (lv+1ULL) + 850ULL / 3ULL) * (lv+1ULL) - 200ULL;

this will be max level 1 million

Proof
View attachment 21823

Rep++ if i help :)


yes work and up lvls but when open skills i got debug
 
You can't change the debugging without editing the client's "experience" and "level" fields respectively.

I think Summ can tell you more about this.

Then you want to tell me highexp.eu and otmadness edited the client? No.. they are smart they changed the experience to show your "level" instead of "experience" and level bar show 0

Thats how it is done in otmadness..max level 777k

- - - Updated - - -

yes work and up lvls but when open skills i got debug
they are smart they changed the experience to show your "level" instead of "experience" and level bar show 0
 
Sir Islam for the lvl break here it is in player.h

Add This Code instead of the original one
Code:
uint64_t exp = ((50ULL * (lv+1ULL) / 3ULL - 100ULL) * (lv+1ULL) + 850ULL / 3ULL) * (lv+1ULL) - 200ULL;

this will be max level 1 million

Proof
View attachment 21823

Rep++ if i help :)



ty alot fixed Rep++ you

bump

1 ) I Want To Break Monsters' Hp Limit ... In My Server Max Hp Is About 12 Billion

2 ) unlimited Health and mana of Player the max is About 2.4 Billion i need up it
 
Last edited:
Back
Top