Page 22 of 26

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 3:53 am
by StarrLord
Can anyone point me to where the Attribute Respec counter is stored? I want to manually put it back without using mods.

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 11:08 am
by darkbear
tested but it seem not working for Phantom Liberty GOG version, anyone same? thanks

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 12:37 pm
by Razapudroshko
not works on Kurt Hansen. his HP not infinite

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 2:04 pm
by Coga
While we're making requests, if someone could get the 'Free Crafting' option back online that'd be great. Thanks in advance!

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 2:59 pm
by howie0913
Is there anyway to increase cyber capacity other than the shards? they're really hard to come by, grinded for hours and only getting one on a random mob.

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 4:47 pm
by xBandaku
howie0913 wrote:
Wed Sep 27, 2023 2:59 pm
Is there anyway to increase cyber capacity other than the shards? they're really hard to come by, grinded for hours and only getting one on a random mob.
you can install CET ( Cyber Engine Tweaks ) and input the following command - Game.AddToInventory("Items.CWCapacityPermaReward_Legendary")

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 7:53 pm
by mbektas98
perks pointers not working

Re: z Cyberpunk 2077

Posted: Wed Sep 27, 2023 8:52 pm
by Reaper
Just my quick 2 cents for Cyberpunk 2077: Phantom Liberty (STEAM):

Feel free to use....

Godmode (Health, maybe effects Stamina, RAM and Oxygen too (Not yet testet):

Code: Select all

{$STRICT}
[ENABLE]
aobscanmodule(aobGodmode,Cyberpunk2077.exe,8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 48 8B ? 48 8B ? ? ? 48 83 C4 ? 41)
alloc(newmem,$1000,aobGodmode)
registersymbol(aobGodmode)
registersymbol(aobGodmodeBackup)
label(aobGodmode_code)
label(aobGodmode_return)
label(aobGodmodeBackup)

newmem:
aobGodmodeBackup:
  readmem(aobGodmode,6)
aobGodmode_code:
  cmp dword ptr [rdi+38],1 // Is Player?
  jne @f // Jmp if not
  mov byte ptr [rdi+000001AC],1 // Else Set Godmode
@@:
  //mov al,[rdi+000001AC] // Original
  reassemble(aobGodmode) // Just Testing
  jmp aobGodmode_return

aobGodmode:
  jmp aobGodmode_code
  nop
aobGodmode_return:

[DISABLE]

aobGodmode:
  //db 8A 87 AC 01 00 00
  readmem(aobGodmodeBackup,6)

unregistersymbol(aobGodmodeBackup)
unregistersymbol(aobGodmode)
dealloc(newmem)
Simple No Reload / Inf. Ammo:

Code: Select all

{$STRICT}
[ENABLE]
aobscanmodule(aobNoReload,Cyberpunk2077.exe,0F 84 ? ? ? ? 44 38 ? ? ? ? ? 0F 85 ? ? ? ? 48 8D ? ? ? ? ? 48 8D ? ? E8 ? ? ? ? 0F B7)
registersymbol(aobNoReload)
aobNoReload:
  db 0F 85
[DISABLE]
aobNoReload:
  db 0F 84
unregistersymbol(aobNoReload)
Have fun....

Re: z Cyberpunk 2077

Posted: Thu Sep 28, 2023 5:19 am
by NEWNS
am i using the free crafting wrong or is it broken?

Re: z Cyberpunk 2077

Posted: Thu Sep 28, 2023 10:42 am
by darkbear
NEWNS wrote:
Thu Sep 28, 2023 5:19 am
am i using the free crafting wrong or is it broken?
Yes, it broken now, even health, you still die when they shot you
also sometimes, they unlimted health too

Re: z Cyberpunk 2077

Posted: Thu Sep 28, 2023 10:40 pm
by Enzee
I haven't used CE since the game first came out, and now I'm coming back for 2.0 and Phantom Liberty. I just wanna increase my character's attributes (mostly to have all the dialogue options available in a single playthrough, but also to mess with various builds). Unfortunately, I'm already pretty far into a new game, and a bit into the DLC content. I saw how you can get max attributes on a new game, with swapping the numbers constantly on character creation, but is there a way to do it now that I'm a decent ways in?

edit: actually, nevermind, I think I figured it out already! Didn't realize he had updated the table in the first post and it worked now. Was going off slightly older comments/tutorials.

Re: z Cyberpunk 2077

Posted: Fri Sep 29, 2023 3:17 am
by wapple
is there anyway to find the item ids? im looking for a way to spawn the new quest rewards for phantom liberty, mainly the gun, "Erebus" if anyone can find the items in-game ID i can use cyber engine tweaks to spawn it, just no where online can i find its ID so far

Re: z Cyberpunk 2077

Posted: Fri Sep 29, 2023 4:11 am
by buckca
wapple wrote:
Fri Sep 29, 2023 3:17 am
is there anyway to find the item ids? im looking for a way to spawn the new quest rewards for phantom liberty, mainly the gun, "Erebus" if anyone can find the items in-game ID i can use cyber engine tweaks to spawn it, just no where online can i find its ID so far
erebus smg should be Items.Preset_Borg4a_HauntedGun I think, but I haven't tried it

In CET click on TweakDB and you can search for records

Re: z Cyberpunk 2077

Posted: Fri Sep 29, 2023 5:47 am
by darkbear
Reaper wrote:
Wed Sep 27, 2023 8:52 pm
Just my quick 2 cents for Cyberpunk 2077: Phantom Liberty (STEAM):

Feel free to use....

Godmode (Health, maybe effects Stamina, RAM and Oxygen too (Not yet testet):

Code: Select all

{$STRICT}
[ENABLE]
aobscanmodule(aobGodmode,Cyberpunk2077.exe,8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 8A 87 ? ? ? ? 88 83 ? ? ? ? 48 8B ? 48 8B ? ? ? 48 83 C4 ? 41)
alloc(newmem,$1000,aobGodmode)
registersymbol(aobGodmode)
registersymbol(aobGodmodeBackup)
label(aobGodmode_code)
label(aobGodmode_return)
label(aobGodmodeBackup)

newmem:
aobGodmodeBackup:
  readmem(aobGodmode,6)
aobGodmode_code:
  cmp dword ptr [rdi+38],1 // Is Player?
  jne @f // Jmp if not
  mov byte ptr [rdi+000001AC],1 // Else Set Godmode
@@:
  //mov al,[rdi+000001AC] // Original
  reassemble(aobGodmode) // Just Testing
  jmp aobGodmode_return

aobGodmode:
  jmp aobGodmode_code
  nop
aobGodmode_return:

[DISABLE]

aobGodmode:
  //db 8A 87 AC 01 00 00
  readmem(aobGodmodeBackup,6)

unregistersymbol(aobGodmodeBackup)
unregistersymbol(aobGodmode)
dealloc(newmem)
Simple No Reload / Inf. Ammo:

Code: Select all

{$STRICT}
[ENABLE]
aobscanmodule(aobNoReload,Cyberpunk2077.exe,0F 84 ? ? ? ? 44 38 ? ? ? ? ? 0F 85 ? ? ? ? 48 8D ? ? ? ? ? 48 8D ? ? E8 ? ? ? ? 0F B7)
registersymbol(aobNoReload)
aobNoReload:
  db 0F 85
[DISABLE]
aobNoReload:
  db 0F 84
unregistersymbol(aobNoReload)
Have fun....
Thanks your codes work and no more crash by code now

Re: z Cyberpunk 2077

Posted: Fri Sep 29, 2023 1:30 pm
by wapple
buckca wrote:
Fri Sep 29, 2023 4:11 am
wapple wrote:
Fri Sep 29, 2023 3:17 am
is there anyway to find the item ids? im looking for a way to spawn the new quest rewards for phantom liberty, mainly the gun, "Erebus" if anyone can find the items in-game ID i can use cyber engine tweaks to spawn it, just no where online can i find its ID so far
erebus smg should be Items.Preset_Borg4a_HauntedGun I think, but I haven't tried it

In CET click on TweakDB and you can search for records

Code works thank you so much, whole command is " Game.AddToInventory("Items.Preset_Borg4a_HauntedGun", 1) " gets you a basic version that you can upgrade to legendary. now i just need to find the new cyberdeck with the blackwall hack. thanks again!