• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

break max skill

breadmaker

New Member
Joined
Jul 16, 2010
Messages
160
Reaction score
3
Hello, i have a question:
Where to change or break max skill,
now i can have 111 max fist fighting (after 111 skill won't grow up :() and 65 sword fighting ...

Where to change/break it ?:blink:
 
It depends on the vocation. At some point, the amount of skill tries (hits) required to advance gets too big, preventing you from advancing in that skill.

Since it's already uint64_t, there is nothing you can do.
 
It depends on the vocation. At some point, the amount of skill tries (hits) required to advance gets too big, preventing you from advancing in that skill. Since it's already uint64_t, there is nothing you can do.

Code:
uint_64 = 0 - 18446744073709551615 (-/+/=)

This is probably impossible, gain 18446744073709551615 "skill tries point"!!! :blink:
 
Code:
uint_64 = 0 - 18446744073709551615 (-/+/=)

This is probably impossible, gain 18446744073709551615 "skill tries point"!!! :blink:

well, maybe it's uint32_t in 32-bit applications and operating systems?

probably, because max skills (except for distance) on knight are 212
Code:
20*(1.1)^([B][COLOR="Red"]212[/COLOR][/B]-11)
	[B][COLOR="Red"]4177916082[/COLOR][/B].1301601326680050206991

2^32
	[B][COLOR="Red"]4294967296[/COLOR][/B]

20*(1.1)^([B][COLOR="Red"]213[/COLOR][/B]-11)
	[B][COLOR="Red"]4595707690[/COLOR][/B].343176145934805522769
 
So Breadmaker use 16-bit operating system?:D

Ohhh... Maybe i know what is going on...

You are do it on gamemaster... sure?
...so, you have limit... Check GMaster privilages (flags)...
 
Last edited:
you can also try dividing firs advance number of tries in source by 2 and dividing skill rate by 2, so youll have virtually doubled ammount of skill tries
 
Back
Top