FF:06:B5 Error

+
Not sure if this is some localization error, unfinished quest code, Greek mathematics or a color (pink). F/Phi = 6. O/W = Omega.

FF06B5.jpg
 
Last edited:
Could be "intended" ?
Seem very similar with the "unresolved" code on Cyberpunk :)
Unresolved, because (I could be wrong) as far as I know, no one found what it suppose to mean yet^^
Code.jpg
 
xLetalis over on Youtube posted a video about finding something similar on The Witcher 3. Might be related to the upcoming DLC maybe? who knows XD

Link to xLetalis video I mentioned:
 
It's... the color pink... a bug, and a visual illusion, as it appears to grow if you stare at the center, on account of the dark border.

For the record: It's obviously not a game screen... It's my artistic impression of what a bug looks like.

The only other information suggesting this, is the pink/yellow triangle, as I've heard the digits changed to yellow in CP2077.

What the rest means, is anyone's guess. CMYK is represented, suggesting a color code. CP2077 holds a pink globus [cruciger].

The CP2077 statue is using what is referred to as the 'addressing pose' and at certain times, was reserved for emperors.

You will find it on coins, and in renaissance paintings, such as Salvatore Mundi, which provide another connection to art.

In any case, it's probably connected to art, graphics or computer code, rather than chakras...

Ah, and the viroboros (ouroboros) design is the q702_regis_decal, altered. I cannot extract files to confirm the hex code.

Strangely, I posted a meme of this decal on Dec. 14th: https://forums.cdprojektred.com/index.php?threads/project-krypto.11110984/

It's probably a busted/incomplete quest. Unfortunately, I lost my old uncooked game files folder, so can't confirm differences.

Still, I am depressed you missed my 'localization error' joke... Also, Greek Y / [ u ] (upsilon) is [ i ] like CyberPink... :(

Actually, I just realized, part of the string YAR-GB spells ARGB... may just be a coincidence though. y is also 'gamma'.

If you carry this thought further, pink is often used as a masking color for transparency or color replacement. No alpha value is provided, thus zero, or 'invisible pink' - as some sort of metaphor for alpha masking or replacement? Sounds like invisible ink... Alpha is another Greek letter, prime, first, 'emperor, king'. Unseen (invisible) Elder... Image in the game is actually semi-transparent. It has some alpha value, as the bricks are visible through it.

The font used for 'F' in the image (Phi) and W (Omega) is actually 'Symbols'. If I had to guess at this metaphor it would be that the statues are simply saying 'punk'... or, it was some development bug since u/i are adjacent keys, and a typo became a conspiracy theory...

Another strange, but obviously unrelated secret: Phi is actually an 'axe', via Qop/Qoph and the Greek kopo/kobo/kovo [κόβω] (chop/qop) and also the Greek letter koppa.

Key distribution. It seems someone just hit all the other letters once to generate unique symbols, besides FF+V+B once to generate the code. Strangely, the letters QWER appear at the end of a string each time, and the letter U/I making up the metaphor are omitted, but P/K are not. I'm sure it's just random nonsense, some related to the font they are using, maybe keyboard layout. :)

Ah ok, I get it... I think the statues are calling the 'emperor', whoever that may be, a 'punk'? That's the best I have at this point...

keymap.jpg
 
Last edited:
However, I did discover a method to untangle the problem.
var entities : array<CGameplayEntity>;
var owner : CActor;
owner = (CActor)GetWitcherPlayer();
FindGameplayEntitiesInRange(entities, owner, 100, 100);
- generic lootable corpse in the area, that is 'locked' (probably like most generic non-lootable corpses)
- tree stump or log with gold
- generic chest, a sack (near grindstone)
- Ursine gear
- a wolf corpse
- a flock of birds (it's a gameplay entity, don't ask)
- sack_unique and sack_carry_weapon_area_skellige (generic loot containers near grindstone)
- the 2 crystals, mq1000_mage_crystal_1 (and _2) both generic
- mq1000_wraith_room_portal (which, as far as I can tell has only 1 possible destination)
- a generic wooden chest, generic metal chest (near wyvern)
- the grindstone
- a lever/switch (closest one near wyvern)
- the wyvern, the cyclops
- the wraith triggers

Nothing out of the ordinary, some flyingcritterlairentity, which is probably the birds...
FindGameplayEntitiesInRange(entities, owner, 100, 100, 'Quest');
Nope, nothing there... Not even a single Quest entity, or none with Quest tags, etc...

I checked the area where Golem spawns, just enter_mage_mega_golem (trigger action)...

The only other stange bit of information. The 3 towers, portal and golem form a cross. There is a map marker for Crossroads nearby, but nothing out of the ordinary, except some contract, probably just a metaphor. There's a troll cave... :D
 
Last edited:
Not sure if this is some localization error, unfinished quest code, Greek mathematics or a color (pink). F/Phi = 6. O/W = Omega.

View attachment 11340388
After I saw the code in the game, I spent a few days on reddit. Worst time of my life.
But I love the impression you did, captures some theories and looks like complete mindf*ck at the same time, well done!
 
February First (FF), 1717 (6b5)? Silent Sejm... wait... why is CDPR inserting politics in their games? Isn't that against their own terms of service? How can we even discuss this if it's forbidden? Sleeping on the problem usually works...

The other connection is to the Ancient Order of Druids: Triangle within a circle and a vertical bar (Tau) through it in their coat of arms.

Maybe ancient order of neo-pagans.... strangely, Aries and Taurus are pictured at top... neo-barbarian Vikings basically...

Oh wait... it's bloody pink... difference for reference, no #FF06B5 included (should resolve as black).
ancient-druids.jpg
ancient-druids2.jpg
 
Last edited:
Well.

Maybe it is just a coincidence, but the byte coming after the byte at the address ff06b5 (16,713,397) in Cyberpunk2077.exe reads 'V'.

So, per A minute before midnight.
You can also see FF:06:B5 as A byte before 'V'.

A byte before V...
A byte before V...
A byte before V... ♪ ♫

It's time for V to shine, brighter than the Moon. Brighter than the Crystal Palace! Go go, V!

:love:

Code:
Code:
#include <fstream>
#include <iostream>
using namespace std;

int main() {
    ifstream in("Cyberpunk2077.txt", ios::in|ios::binary|ios::ate);
    int pos = 16713397;
    int width = 10;

    pos -= width;
    in.seekg(pos, ios::beg);
    char arr[1];
    for(int i=0; i<width*2; i++) {
        in.read(arr, 1);
        cout << pos++ << ": " << *arr << " (" << (int)(unsigned char) *arr << ")" << endl;
    }
    return 0;
}

Output:
Code:
16713387: � (204)
16713388: � (204)
16713389: � (204)
16713390: � (204)
16713391: � (204)
16713392: H (72)
16713393: � (137)
16713394: \ (92)
16713395: $ (36)
16713396:   (32)
16713397: U (85)
16713398: V (86)
16713399: W (87)
16713400: H (72)
16713401: � (131)
16713402: � (236)
16713403: P (80)
16713404: H (72)
16713405: � (139)
16713406:  (26)

Yeah, I am all V-centered in Cyberpunk 2077. Eat it.
 
Last edited:
Now that is truly some coincidence. I wonder if anyone has calculated the probability of those 3 bytes appearing sequentially based on the length of the file. I still favor the simplest solution, which tends to be the correct one... anime: Vinland Saga.

vinland-thunk.jpg
vinland-thunk2.jpg


You can't win against me at this game, CDPR... I found this 'baranek' - #Cosmic_Top_Secret. I call this particular masterpiece 'thunk'.

ghent.jpg
arnolfini.jpg


Now this took me a few centuries to decode (actually a few weeks)... Related to Exekias Amphora #344 and 2001: A Space Odyssey... several other cult things... Are you not yet entertained? :D

geralt-nietzsche.jpg


Final nail in that coffin. My work here is done.
 
Last edited:
It doesn't have to be a coincidence, if that were the idea, it would have been enough for the author to ask a dev for address of a byte that reads 'V' and has six hex values in its address.
 
I have a new one for you (Trąby coat of arms).

EN horn PL trąba > GR keras LAT cornu (horns) > PL korona (crown).

Note it's white, yellow, black - contains a great mystery. :D

traby.jpg
 
Last edited:
Ah, that is a new one, instead of looking at it as a single color, split its components into three colors.

Though, that would be full red, very faintly greenish black, and a bit of a darker blue.

So let me go for another numerical thing... let's talk about what isn't there FFFFFF - FF06B5 = 00F94A, which is the inverse color, of course. As a decimal number, that translates to 63818. Nah. It doesn't ring a bell.
Post automatically merged:

About the statue, there are sheets of paper above both edges of the item it holds and above its head. They are only visible from above.

photomode_29012023_081007.jpg


photomode_29012023_081244.jpg


photomode_29012023_081225.jpg


What does it read?

photomode_29012023_081113.jpg


There is also some sort of chamber under the statue.

photomode_29012023_081423.jpg


So much for the first look.
 
Last edited:
Thought it was related, but isn't: Temple Isle Glagolitic inscription. :D

Ogniu, napełnij mi serce męstwem.
Ogniu, oczyść mnie z niegodliwości.
Ogniu, spal mnie jeśli jestem niegodny.

Fire, fill my heart with manliness (bravery).
Fire, cleanse me of wickedness.
Fire, burn me if I am unworthy (wicked).

Ⰹ character acts as a dot/period [ . ] instead of [ i/y ] at the end of a statement.
Э character is sometimes [ i ] and sometimes [ e ] not [ i/j ] as per Polish language.
Ⰼ character is Polish [ j ] ( y ) and not French [ j ] ( dz ).
Ⱆ character is sometimes [ o ] instead of [ u
] as in Ugniu/Ogniu.
Ⰲ character is stylized slightly differently and is a Polish [ w ] ( v ).

There is a word I can't make out at the end of the first 2 lines: jeczny/ieczni (wiecznie) 'forever/eternally'?

Seems to be a joke about the Eternal Fire. Paradox is that one must be burned in order to be 'cleansed'.

Pointless, everything is basically a conspiract theory. FF:06:B5 is:

A. February First 1717 (Silent Sejm)
B. Ancient Order of Druids
C. Some snake cult
D. Trąby coat of arms
E. Trilateral (Prussian) Commission
F. A 'ring': V/Wiroboros (Ouroboros) since [ Ω/ω ] (Omega) = W ( V ) and [ Υ/υ ] (Upsilon) = I
G. Hypothetically, JG = Jörmungandr - Theoretically, Ogromne Jądro (in Polish via gad/jad)


exekias.jpg


Basically: Exekias Amphora #344...

Nobody supposedly knows this exists... It's just one of those cult things... 2001: A Space Odyssey.

Greeks, Byzantines, Ostrogoths and a certain Rex: Jormunrekkr, Jormunreiks, Ermanaric, Germanaric, German Reich.

Jormun is the same root as Ogromne (gigantic), Gromada (gathering, mob), Gromadź (gather, collect), Augur (Grow, increase), Ogre.

Ouros (Viros): snakes, tails, squirrels (skiouros/skuviros), a certain male anatomical element, and vir/vis - man, strength, vortex, whirl.

In Polish, Germany is 'Niemcy' aka Nemesis, Albrecht Durer (1501)... final nail in that coffin. :D

In case you're not a connoisseur of historical jokes, and I've offended your chancellor, RSVP avec votres protestations.

snakes.jpg


Ancient Order of Druids, 2 snake cult symbols (trying to be as cryptic as possible), rather questionable battalion from UA, Trilateral (Prussian) Commission, Trąby coat of arms.

No time to update mod right now, busy with other things... :LOL:
 

Attachments

  • glagolitic.jpg
    glagolitic.jpg
    1.7 MB · Views: 138
Last edited:
I have done zero research on it.

But I bet it ends up in all of their games (Cyberpunk and The Witcher 3 so far) until their brand new IP comes out years from now.
 
To go deeper into the bytes, has anyone checked the memory registers of FF 06 or B5 while the game is running? This seems like it might be old C, C+, or some other machine languages where you have to specify register values. I started to mess with C+ at one time, and while I didn't pursue it, (Plenty of OOOs out there) this reminds me of code from some old machine language. It's a task beyond me, but I haven't really seen anyone else mention how it looks like some old ML code, so I figured I'd toss it out there.
 
Top Bottom