Out of knowledge
Posted: Wed Mar 13, 2019 6:01 am
What is max level a player can have? Or is it unlimited levels a player can have?
Nah just means don't put in 1 million armorSellSword wrote: Wed Mar 13, 2019 6:07 am The sky (or bank account) is the limit. A GM did advise once that when your armor is set over a million you end up dying repeatedly. (Maybe it is AT a million, so be cautious...)![]()
Your ARM building up isn't an issue. However, if it gets high enough to cause your Hp to exceed 2.147b, the Hp value goes negative and you will die every time you login.SellSword wrote: Wed Mar 13, 2019 6:07 am The sky (or bank account) is the limit. A GM did advise once that when your armor is set over a million you end up dying repeatedly. (Maybe it is AT a million, so be cautious...)![]()
Truly the things I worry about when I log in!madmaniacal1 wrote: Wed Mar 13, 2019 6:28 amYour ARM building up isn't an issue. However, if it gets high enough to cause your Hp to exceed 2.147b, the Hp value goes negative and you will die every time you login.SellSword wrote: Wed Mar 13, 2019 6:07 am The sky (or bank account) is the limit. A GM did advise once that when your armor is set over a million you end up dying repeatedly. (Maybe it is AT a million, so be cautious...)![]()
Which makes things easy: aim for 2,147,483,647-1 and you'll be safe - until 19 January 2038 that is.Wikipedia wrote:In computing
The number 2,147,483,647 (or hexadecimal 7FFF,FFFF16) is the maximum positive value for a 32-bit signed binary integer in computing. It is therefore the maximum value for variables declared as integers (e.g., as int) in many programming languages, and the maximum possible score, money, etc. for many video games. The appearance of the number often reflects an error, overflow condition, or missing value.[8] In December 2014, Google said that PSY's music video "Gangnam Style" had exceeded the 32-bit integer limit for YouTube view count, necessitating YouTube to upgrade the counter to a 64-bit integer.[9][10]
The data type time_t, used on operating systems such as Unix, is a signed integer counting the number of seconds since the start of the Unix epoch (midnight UTC of 1 January 1970), and is often implemented as a 32-bit integer.[11] The latest time that can be represented in this form is 03:14:07 UTC on Tuesday, 19 January 2038 (corresponding to 2,147,483,647 seconds since the start of the epoch). This means that systems using a 32-bit time_t type are susceptible to the Year 2038 problem.[12]
Code: Select all
13 Mar 19 @ 08:50:19 ~
$ date +%s
1552477867
Code: Select all
13 Mar 19 @ 08:54:21 ~
$ date +%s
1552478099