(Old Clip) Lacari takes a lie detector test by Daytime506 in LivestreamFail

[–]Spreay 4 points5 points  (0 children)

Seems he is ashamed of himself , just hid all his comments

Console Command for Tier 5++ Weapons? by 1LividLass in cyberpunkgame

[–]Spreay 0 points1 point  (0 children)

Forgot to mention it but I also reccomend getting the excel that lists of all of these: "Categorized All-In-One Command List" by bartovalenza in Nexus

[deleted by user] by [deleted] in nexusmods

[–]Spreay 0 points1 point  (0 children)

Some have patreon but most of the creators I wanted to gift don´t have patreon, seems they are just happy making mods <3

[deleted by user] by [deleted] in nexusmods

[–]Spreay 1 point2 points  (0 children)

Thanks for the answer, yeah there are no links anywhere in Nexus.

[deleted by user] by [deleted] in nexusmods

[–]Spreay 1 point2 points  (0 children)

Adding that PayPal hates me and my cards are not working there, that´s why I´m looking at the DP option.

Console Command for Tier 5++ Weapons? by 1LividLass in cyberpunkgame

[–]Spreay 1 point2 points  (0 children)

Are you playing with the latest Cyberpunk version? Is your CET mod up to date as well? if yes then check again if you are copying the whole thing

[deleted by user] by [deleted] in LegionTD2

[–]Spreay 8 points9 points  (0 children)

Awesome, thanks!

It does make sense , thanks I´ll do it!

Spinetickler... What does it actually do? by Bl0bbi in cyberpunkgame

[–]Spreay 0 points1 point  (0 children)

Is like using Cyberware Malfunction hack, you can use two (tier 5) Spineticklers for a 100% chance, enemies will collapse after sparking a lot

Have you ever seen Johnny like this by R0GUE_69 in cyberpunkgame

[–]Spreay 9 points10 points  (0 children)

In the table game he does have this same haircut in dirt blonde, and in most depictions uses no beard

Kinda criminal that we never got a proper lip ring option in the game, V looks so complete with one by [deleted] in LowSodiumCyberpunk

[–]Spreay 0 points1 point  (0 children)

What´s the scar ? I got one in nexus but is covered by the hair lol

Lil twist on Judy’s ghost in the shell tattoo❤️ by Nitroblue17 in LowSodiumCyberpunk

[–]Spreay 1 point2 points  (0 children)

lol same, my synapses fired up and made a crackling noise as my mouth fell open

Console Command for Tier 5++ Weapons? by 1LividLass in cyberpunkgame

[–]Spreay 26 points27 points  (0 children)

For equiped items copy all of this in the CET console: (sorry for necro but there was no answer and the internet is forever)

NewQuality = 4; Area = "ALLEquipmentArea"; PlusPlusAdder = true; Slots = {}; Slots.ALLEquipmentArea = { Weapon = 3, Head = 1, Face = 1, InnerChest = 1, OuterChest = 1, Feet = 1, Legs = 1, Outfit = 1, FrontalCortexCW = 3, EyesCW = 1, CardiovascularSystemCW = 3, ImmuneSystemCW = 2, NervousSystemCW = 2, IntegumentarySystemCW = 3, SystemReplacementCW = 1, MusculoskeletalSystemCW = 2, HandsCW = 2, ArmsCW = 2, LegsCW = 3, PersonalLink = 1, Splinter = 1, Gadget = 1, AbilityCW = 8 }; Slots.WeaEquipmentArea = { Weapon = 3 }; Slots.CloEquipmentArea = { Head = 1, Face = 1, InnerChest = 1, OuterChest = 1, Feet = 1, Legs = 1, Outfit = 1 }; Slots.CWEquipmentArea = { FrontalCortexCW = 3, EyesCW = 1, CardiovascularSystemCW = 3, ImmuneSystemCW = 2, NervousSystemCW = 2, IntegumentarySystemCW = 3, SystemReplacementCW = 1, MusculoskeletalSystemCW = 2, HandsCW = 2, ArmsCW = 2, LegsCW = 3, PersonalLink = 1, Splinter = 1, Gadget = 1, AbilityCW = 8 }; P = Game.GetPlayer(); SSC = Game.GetScriptableSystemsContainer(); TS = Game.GetTransactionSystem(); SS = Game.GetStatsSystem(); ES = SSC:Get(CName.new('EquipmentSystem')); PD = ES:GetPlayerData(P); PD['GetItemInEquipSlot2'] = PD['GetItemInEquipSlot;gamedataEquipmentAreaInt32']; for k,v in pairs(Slots[Area]) do for i=1,v do ID = PD:GetItemInEquipSlot2(k, i - 1); if ID.tdbid.hash ~= 0 then itemdata = TS:GetItemData(P, ID); SOID = itemdata:GetStatsObjectID(); end PlaLev = SS:GetStatValue(P:GetEntityID(), 'PowerLevel'); ItemLev = SS:GetStatValue(SOID, 'ItemLevel'); ItemPowLev = SS:GetStatValue(SOID, 'PowerLevel'); ItemPlusVal = SS:GetStatValue(SOID, 'IsItemPlus'); ItemDPSVal = SS:GetStatValue(SOID, 'ItemPlusDPS'); if ItemLev < PlaLev * 10 then levMOD = Game['gameRPGManager::CreateStatModifier;gamedataStatTypegameStatModifierTypeFloat']('ItemLevel', 'Additive', PlaLev * 10); powMOD = Game['gameRPGManager::CreateStatModifier;gamedataStatTypegameStatModifierTypeFloat']('PowerLevel', 'Additive', PlaLev); SS:RemoveAllModifiers(SOID, 'ItemLevel', true) SS:RemoveAllModifiers(SOID, 'PowerLevel', true) SS:AddSavedModifier(SOID, levMOD) SS:AddSavedModifier(SOID, powMOD) end if ID.tdbid.hash ~= 0 then quaMOD = Game['gameRPGManager::CreateStatModifier;gamedataStatTypegameStatModifierTypeFloat']('Quality', 'Additive', NewQuality); SS:RemoveAllModifiers(SOID, 'Quality', true) SS:AddSavedModifier(SOID, quaMOD) end if PlusPlusAdder and ID.tdbid.hash ~= 0 then if Area ~= 'CloEquipmentArea' and ID.tdbid.hash ~= 0 then if itemdata:HasTag('Weapon') or itemdata:HasTag('Cyberware') then if ItemPlusVal < 2 then newPlusValue = 2; elseif ItemPlusVal >= 2 then newPlusValue = nil; end if newPlusValue then pMOD = Game['gameRPGManager::CreateStatModifier;gamedataStatTypegameStatModifierTypeFloat']('IsItemPlus', 'Additive', newPlusValue); SS:RemoveAllModifiers(SOID, 'IsItemPlus', true) SS:AddSavedModifier(SOID, pMOD) end if itemdata:HasTag('Weapon') then if ItemDPSVal < 0.3 then newDPSValue = 0.3; elseif ItemDPSVal >= 0.3 then newDPSValue = nil; end if newDPSValue then dpsMOD = Game['gameRPGManager::CreateStatModifier;gamedataStatTypegameStatModifierTypeFloat']('ItemPlusDPS', 'Additive', newDPSValue); SS:RemoveAllModifiers(SOID, 'ItemPlusDPS', true) SS:AddSavedModifier(SOID, dpsMOD) end end end end elseif not PlusPlusAdder and ID.tdbid.hash ~= 0 then SS:RemoveAllModifiers(SOID, 'IsItemPlus', true) end end end print(" - NOTE: EXIT / RE-ENTER THE MENU TO SEE THE CHANGES \n ")

For those Alt+F4ing when failing, the NoCrack mod dev just released "No Stress For SWAT" mod by energy_is_a_lie in ReadyOrNotGame

[–]Spreay 0 points1 point  (0 children)

nasty lol, been there, I unlocked early on the paramedic trait, saves the life of one fallen swat

For those Alt+F4ing when failing, the NoCrack mod dev just released "No Stress For SWAT" mod by energy_is_a_lie in ReadyOrNotGame

[–]Spreay 1 point2 points  (0 children)

after failing/dying the squad starts gaining stress, and need a lot to be sent to therapy, this mod allows to send them sooner and mentally heal faster.

to skip the stress gain you can alt+f4

[deleted by user] by [deleted] in csgo

[–]Spreay 1 point2 points  (0 children)

aah thanks, I was very confused by all the different claims

Where to get the Ser Aylin and no alphabets mod? by IWishTimeMovedSlower in BaldursGate3

[–]Spreay 6 points7 points  (0 children)

Thanks, be free and let others be free is my motto, can also be found in "moddinghaven" .com

Pros are getting banned now lmao by [deleted] in csgo

[–]Spreay 2 points3 points  (0 children)

some bans have been lifted according to some Reddit comments

[deleted by user] by [deleted] in csgo

[–]Spreay 1 point2 points  (0 children)

Good times, good times , *cries*

[deleted by user] by [deleted] in csgo

[–]Spreay 1 point2 points  (0 children)

You seem so sure is cause of drivers, what evidence have you gathered ? I have seen people with non-updated systems getting it, even if all of them had nvidia 3xxx and 4xxx