Verify Code: Difference between revisions

From Fracterebus
Jump to navigation Jump to search
Created page with "The verify code is a code produced by the game that reflects the results of beating the game. It includes which Seed Code was used to create the world, and some stats about your run through it. The code is made up of 60-bits of information, but is shared using a 24-character Base64 code. {| class="wikitable" |+ Map of where the code bits go. !00!!01!!02!!03!!04!!!!05!!06!!07!!08!!09!!!!10!!11!!12!!13!!14!!!!15!!16!!17!!18!!19 |- | class="code_version" |V | class..."
 
No edit summary
Line 1: Line 1:
The verify code is a code produced by the game that reflects the results of beating the game. It includes which [[Seed Code]] was used to create the world, and some stats about your run through it. The code is made up of 60-bits of information, but is shared using a 24-character [[Base64]] code.
The verify code is a code produced by the game that reflects the results of beating the game. It includes which [[Seed Code]] was used to create the world, and some stats about your run through it. The code is made up of 132-bits of information, but is shared using a 22-character [[Base64]] code. The exact layout of bits in the verify code aren't intended to be public information in the hope that it will reduce cheating.
 
{| class="wikitable"
|+ Map of where the code bits go.
!00!!01!!02!!03!!04!!!!05!!06!!07!!08!!09!!!!10!!11!!12!!13!!14!!!!15!!16!!17!!18!!19
|-
| class="code_version" |V
| class="code_version" |V
| class="code_version" |V
| class="seed_value" |S
| class="seed_value" |S
||
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
||
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
||
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
|-
!20!!21!!22!!23!!24!!!!25!!26!!27!!28!!29!!!!30!!31!!32!!33!!34!!!!35!!36!!37!!38!!39
|-
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
||
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
||
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
| class="seed_value" |S
||
| class="skip_tutorial" |T
| class="save_restore_health" |SH
| class="save_restore_ammo" |SA
| class="map_room_type" |M
| class="map_room_type" |M
|-
!40!!41!!42!!43!!44!!!!45!!46!!47!!48!!49!!!!50!!51!!52!!53!!54!!!!55!!56!!57!!58!!59
|-
| class="biome_count" |BC
| class="biome_count" |BC
| class="biome_count" |BC
| class="biome_count" |BC
| class="biome_size" |BS
||
| class="biome_size" |BS
| class="biome_cohesion" |CO
| class="biome_cohesion" |CO
| class="enemy_quantity" |EQ
| class="enemy_quantity" |EQ
||
| class="enemy_difficulty" |ED
| class="enemy_difficulty" |ED
| class="player_skill" |P
| class="player_skill" |P
| class="rng_source" |R
||
| class="element_quad" |Q1
| class="element_quad" |Q2
| class="element_quad" |Q3
| class="element_quad" |Q4
| class="element_quad" |Q5
|}


{| class="wikitable"
{| class="wikitable"
|+ Legend
|+ Legend
!Key!!Description!!Start!!Length!!Entropy
!Category!!Description
|-
| class="code_version" |V||[[Code Version]]||0||3||0
|-
| class="seed_value" |S||[[RNG Seed|World Generation RNG Seed]]||3||32||32
|-
|-
| class="skip_tutorial" |T||[[Tutorial Area|Tutorial Skip]]||35||1||1
|[[Seed Code]]||The seed code used to generate this world.
|-
|-
| class="save_restore_health" |SH||[[Save Room Configuration|Save Room Health Restore]]||36||1||0
|[[Play Time]]||How long it took you to beat the game.
|-
|-
| class="save_restore_ammo" |SA||[[Save Room Configuration|Save Room Ammo Restore]]||37||1||0
|[[Item Percent]]||What percentage of items you collected.
|-
|-
| class="map_room_type" |M||[[Map Room Configuration|Map Room Type]]||38||2||1
|[[Explore Percent]]||What percentage of the map you explored.
|-
|-
| class="biome_count" |BC||[[Biome Configuration|Biome Count]]||40||4||4
|[[Cheat Flag]]||This bit is turned on if the game was started using any command line parameters.
|-
| class="biome_size" |BS||[[Biome Configuration|Biome Size]]||44||2||2
|-
| class="biome_cohesion" |CO||[[Biome Configuration|Biome Cohesion]]||46||2||2
|-
| class="enemy_quantity" |EQ||[[Enemy Configuration|Enemy Quantity]]||48||2||2
|-
| class="enemy_difficulty" |ED||[[Enemy Configuration|Enemy Difficulty]]||50||2||0
|-
| class="player_skill" |P||[[Player Skill]]||52||2||2
|-
| class="rng_source" |R||[[RNG Source]]||54||1||0
|-
| class="element_quad" |Q#||[[Element Quads]]
* Q1: Light, Dark, Life, Death
* Q2: Earth, Air, Gravity, Void
||55||5||2
|}
|}
'''Possible Worlds'''
The current format of the seed code has 48 bits of entropy. That means the number of possible worlds is 281,474,976,710,656.
{{#css:User:NerdOfEpic/code-bits.css}}

Revision as of 17:44, 15 June 2026

The verify code is a code produced by the game that reflects the results of beating the game. It includes which Seed Code was used to create the world, and some stats about your run through it. The code is made up of 132-bits of information, but is shared using a 22-character Base64 code. The exact layout of bits in the verify code aren't intended to be public information in the hope that it will reduce cheating.

Legend
Category Description
Seed Code The seed code used to generate this world.
Play Time How long it took you to beat the game.
Item Percent What percentage of items you collected.
Explore Percent What percentage of the map you explored.
Cheat Flag This bit is turned on if the game was started using any command line parameters.