Got a few values out of a function,
EST: 7883
IST: 8183
@CozmoKitten We can try donating these ^
This is the code:
__author__ = "Liam"
__copyright__ = "Copyright (C) 2023 Liam"
__license__ = "MIT"
"""
Formula: (first advancement) * (* * * discovery date) - (neves) + root(root(count of all advancements)) + yourself * (count of _ _ _ _ _)
Values as of 10/2/2024:
- First Advancement: When we found out the Mystery Scroll, or when we found out about /item?
- Discovery Date: January 24, 2024 (or 1706227200 in Epoch)
- Neves: 0
- Count of Neves: 0
- Yourself: number of characters in your username
- Root Root: 1
"""
advancement = 1 # Neil's hints say that this is non exsistent so its 1
discovery = [2624, 2724] # January 26, 2024 and January 27, 2024 depending on IST or EST
neves = 0
root_root_count_of_advancements = 0 # Since root of root of 0 = 0
yourself = 11 # According to Cozmo's name as he will be the one donating
for discovery_date in discovery:
ans = advancement * (3 * discovery_date) - neves + root_root_count_of_advancements + yourself
print(ans)