Cyberpunk 2077

Cyberpunk 2077

View Stats:
Magnouver Apr 10, 2024 @ 2:24pm
Aguilar Suit cant Move to Stash
as the title said. ive even finished the Jago and Bennet and even got text from Aguilar herself. is the quest still not finished or what? because i cant put it in my stash since the quest icon is still there
< >
Showing 1-13 of 13 comments
Porkhammer Apr 10, 2024 @ 2:59pm 
Unfortunately it remains a quest item permanently.
Bjørn Apr 10, 2024 @ 3:15pm 
Yes, I also noticed this. Same with some of Johnny's old clothes you collect throughout the game :steamsad:
Porkhammer Apr 10, 2024 @ 3:56pm 
I was able to stash Johnny's clothes after a certain point in the mainstory, I just don't remember when exactly. Annoying that they take up space for so long, though.
Bjørn Apr 10, 2024 @ 4:03pm 
Originally posted by Porkhammer:
I was able to stash Johnny's clothes after a certain point in the mainstory, I just don't remember when exactly. Annoying that they take up space for so long, though.

Ah, thanks for that. Yes I played over half-way through the game before, and was sure I could stash it there. Maybe after you've collected it all through the various missions related to it, or after the one where his band has a reunion concert or something.

I only have one of his items so far in my current game, and it's already bugging me a bit :rufussmile:
Magnouver Apr 10, 2024 @ 5:22pm 
Originally posted by Bjørn:
Yes, I also noticed this. Same with some of Johnny's old clothes you collect throughout the game :steamsad:
i got all of his items and the quest mark dissapear from all of his item (also got the Breathtaking achievement). and i think thats the only "100%" working fix for now

edit: but the aguiilar suit one is so sad tho, no matter what i do it wont disappear :steamsad:
Last edited by Magnouver; Apr 10, 2024 @ 5:22pm
Simple Man Apr 14, 2024 @ 3:29pm 
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

1. download and install Cyber Engine Tweaks from the nexus if you're not using it yet. Do the initial configuration on game startup.

2. equip the item(s) you want to untag. When i did it for myself i just cleared all my slots except the item itself, be it aguilar suit, or the corpo bud from Songbirds mission, or anything else.

3. copy paste this code into CET console

player = Game.GetPlayer() ssc = Game.GetScriptableSystemsContainer() ts = Game.GetTransactionSystem() es = ssc:Get(CName.new('EquipmentSystem')) espd = es:GetPlayerData(player) espd['GetItemInEquipSlot2'] = espd['GetItemInEquipSlot;gamedataEquipmentAreaInt32'] local slots = { Face = 1, Feet = 1, Head = 1, InnerChest = 1, Legs = 1, OuterChest = 1, Outfit = 1, Weapon = 3 } for k,v in pairs(slots) do for i=1,v do print('Removing quest tags ' .. k .. ' slot ' .. (i - 1)) itemid = espd:GetItemInEquipSlot2(k, i - 1) if itemid.tdbid.hash ~= 0 then itemdata = ts:GetItemData(player, itemid) if itemdata:HasTag("Quest") then itemdata:RemoveDynamicTag("Quest") end end end end

CET will display a message in the lines of "removing quest tags from X" as confirmation, and you're done. Aguilar suit and all items that CDPR locked to your inventory for no reason at all can now be disassembled, sold or stashed.
Magnouver May 14, 2024 @ 9:48am 
Originally posted by Simple Man:
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

1. download and install Cyber Engine Tweaks from the nexus if you're not using it yet. Do the initial configuration on game startup.

2. equip the item(s) you want to untag. When i did it for myself i just cleared all my slots except the item itself, be it aguilar suit, or the corpo bud from Songbirds mission, or anything else.

3. copy paste this code into CET console

player = Game.GetPlayer() ssc = Game.GetScriptableSystemsContainer() ts = Game.GetTransactionSystem() es = ssc:Get(CName.new('EquipmentSystem')) espd = es:GetPlayerData(player) espd['GetItemInEquipSlot2'] = espd['GetItemInEquipSlot;gamedataEquipmentAreaInt32'] local slots = { Face = 1, Feet = 1, Head = 1, InnerChest = 1, Legs = 1, OuterChest = 1, Outfit = 1, Weapon = 3 } for k,v in pairs(slots) do for i=1,v do print('Removing quest tags ' .. k .. ' slot ' .. (i - 1)) itemid = espd:GetItemInEquipSlot2(k, i - 1) if itemid.tdbid.hash ~= 0 then itemdata = ts:GetItemData(player, itemid) if itemdata:HasTag("Quest") then itemdata:RemoveDynamicTag("Quest") end end end end

CET will display a message in the lines of "removing quest tags from X" as confirmation, and you're done. Aguilar suit and all items that CDPR locked to your inventory for no reason at all can now be disassembled, sold or stashed.
tahnk you so much for the detailed response.
modball Jul 24, 2024 @ 10:47pm 
Originally posted by Simple Man:
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

Thanks for sharing this!
nativecoruscant Oct 5, 2024 @ 6:22am 
Originally posted by Simple Man:
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

1. download and install Cyber Engine Tweaks from the nexus if you're not using it yet. Do the initial configuration on game startup.

2. equip the item(s) you want to untag. When i did it for myself i just cleared all my slots except the item itself, be it aguilar suit, or the corpo bud from Songbirds mission, or anything else.

3. copy paste this code into CET console

player = Game.GetPlayer() ssc = Game.GetScriptableSystemsContainer() ts = Game.GetTransactionSystem() es = ssc:Get(CName.new('EquipmentSystem')) espd = es:GetPlayerData(player) espd['GetItemInEquipSlot2'] = espd['GetItemInEquipSlot;gamedataEquipmentAreaInt32'] local slots = { Face = 1, Feet = 1, Head = 1, InnerChest = 1, Legs = 1, OuterChest = 1, Outfit = 1, Weapon = 3 } for k,v in pairs(slots) do for i=1,v do print('Removing quest tags ' .. k .. ' slot ' .. (i - 1)) itemid = espd:GetItemInEquipSlot2(k, i - 1) if itemid.tdbid.hash ~= 0 then itemdata = ts:GetItemData(player, itemid) if itemdata:HasTag("Quest") then itemdata:RemoveDynamicTag("Quest") end end end end

CET will display a message in the lines of "removing quest tags from X" as confirmation, and you're done. Aguilar suit and all items that CDPR locked to your inventory for no reason at all can now be disassembled, sold or stashed.

My man, thanks for helping.
F1reGolem Nov 10, 2024 @ 11:55am 
Originally posted by Simple Man:
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

1. download and install Cyber Engine Tweaks from the nexus if you're not using it yet. Do the initial configuration on game startup.

2. equip the item(s) you want to untag. When i did it for myself i just cleared all my slots except the item itself, be it aguilar suit, or the corpo bud from Songbirds mission, or anything else.

3. copy paste this code into CET console

player = Game.GetPlayer() ssc = Game.GetScriptableSystemsContainer() ts = Game.GetTransactionSystem() es = ssc:Get(CName.new('EquipmentSystem')) espd = es:GetPlayerData(player) espd['GetItemInEquipSlot2'] = espd['GetItemInEquipSlot;gamedataEquipmentAreaInt32'] local slots = { Face = 1, Feet = 1, Head = 1, InnerChest = 1, Legs = 1, OuterChest = 1, Outfit = 1, Weapon = 3 } for k,v in pairs(slots) do for i=1,v do print('Removing quest tags ' .. k .. ' slot ' .. (i - 1)) itemid = espd:GetItemInEquipSlot2(k, i - 1) if itemid.tdbid.hash ~= 0 then itemdata = ts:GetItemData(player, itemid) if itemdata:HasTag("Quest") then itemdata:RemoveDynamicTag("Quest") end end end end

CET will display a message in the lines of "removing quest tags from X" as confirmation, and you're done. Aguilar suit and all items that CDPR locked to your inventory for no reason at all can now be disassembled, sold or stashed.

Choom youre a legend tysm :)
Grubbs008 Nov 10, 2024 @ 12:06pm 
Originally posted by Simple Man:
Since i recently had this and your post isn't that old, for you and anyone else (on PC) that wishes to untag quest items, follow the 3 steps:

1. download and install Cyber Engine Tweaks from the nexus if you're not using it yet. Do the initial configuration on game startup.

2. equip the item(s) you want to untag. When i did it for myself i just cleared all my slots except the item itself, be it aguilar suit, or the corpo bud from Songbirds mission, or anything else.

3. copy paste this code into CET console

player = Game.GetPlayer() ssc = Game.GetScriptableSystemsContainer() ts = Game.GetTransactionSystem() es = ssc:Get(CName.new('EquipmentSystem')) espd = es:GetPlayerData(player) espd['GetItemInEquipSlot2'] = espd['GetItemInEquipSlot;gamedataEquipmentAreaInt32'] local slots = { Face = 1, Feet = 1, Head = 1, InnerChest = 1, Legs = 1, OuterChest = 1, Outfit = 1, Weapon = 3 } for k,v in pairs(slots) do for i=1,v do print('Removing quest tags ' .. k .. ' slot ' .. (i - 1)) itemid = espd:GetItemInEquipSlot2(k, i - 1) if itemid.tdbid.hash ~= 0 then itemdata = ts:GetItemData(player, itemid) if itemdata:HasTag("Quest") then itemdata:RemoveDynamicTag("Quest") end end end end

CET will display a message in the lines of "removing quest tags from X" as confirmation, and you're done. Aguilar suit and all items that CDPR locked to your inventory for no reason at all can now be disassembled, sold or stashed.

Actually used this when it bugged on my latest play through, thanks for this.
Rabidnid Nov 10, 2024 @ 11:21pm 
Originally posted by Porkhammer:
I was able to stash Johnny's clothes after a certain point in the mainstory, I just don't remember when exactly. Annoying that they take up space for so long, though.

You need the complete set from memory, then you can stash them.
Mander Nov 10, 2024 @ 11:48pm 
But how Aguilar will acknowledge Aguilar, if you removed it?

"I tip my hat to you. One legend to another."
Last edited by Mander; Nov 10, 2024 @ 11:49pm
< >
Showing 1-13 of 13 comments
Per page: 1530 50

Date Posted: Apr 10, 2024 @ 2:24pm
Posts: 13