《電馭叛客2077》控制台程式碼大全 (第6頁:藍圖) - 遊戲狂
廣告

《電馭叛客2077》控制台程式碼大全 (第6頁:藍圖)

請拿手機掃描此QRCODE

傳到手機看

2024-10-23

廣告

藍圖程式碼列表

創建藍圖 NewID = "把物品ID替換到引號內"; CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); CB = CS:GetPlayerCraftBook(); if TweakDB:GetRecord(NewID) then recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(NewID..".displayName")); if TDB.GetItemRecipeRecord(NewID) then print(" \n\tAttempt to add a recipe : "..recName.." \n\tYou need to set an ITEM ID, not a RECIPE ID.\n ") else if CB:KnowsRecipe(NewID) then print(' \n\t Recipe already present, no need to add : "'..NewID..'" - '..recName..' \n ') else CB:AddRecipe(NewID) print(' \n\t Recipe ADDED : "'..NewID..'" - '..recName..' \n ') end end else print(' \n\t "'..NewID..'" -> NOT VALID, you need a valid ID. \n ') end

廣告

刪除特定藍圖 Recipe = "把物品ID替換到引號內"; function removeRecipe() local CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); local CB = CS:GetPlayerCraftBook(); local DATA = {'gamedataConsumableItem_Record', 'gamedataItem_Record', 'gamedataItemRecipe_Record', 'gamedataWeaponItem_Record', 'gamedataClothing_Record'}; if string.find(Recipe, '\t'..tempQua..' - '..recordName) print(' \n\tJUST TO BE CLEAR, these "unknown" recipes are not actually removed, just hidden in the crafting menu.\n\tIf the command is repeated the recipe will still be found, even though it is already hidden in the menu.\n ') else print(' \n\tTHE SET ID WAS FOUND AS VALID, BUT IT IS NOT PRESENT IN THE KNOWN RECIPES ( nothing to remove ).\n ') end end break end end end if not unknownID_Valid then print(' \n\tSET UNKNOWN ID "'..Recipe..'" NOT FOUND.\n\tYOU NEED TO SET THE ID PROPERLY ( Ex. "" ) AND YOU MUST BE ABLE TO FIND IT IN CET TweakDB EDITOR.\n ') end unknownID_Valid = nil; else if TweakDB:GetRecord(Recipe) then if CB:KnowsRecipe(Recipe) then local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(Recipe..'.displayName')); CB:HideRecipe(Recipe, true) print(' \n\t. . . REMOVING\t->\t"'..Recipe..'" - '..recName..'\n ') else print(' \n\t'..Recipe..'\t->\tNOT FOUND IN THE KNOWN RECIPES.\n ') end else print(' \n\t"'..Recipe..'"\t->\tID NOT VALID.\n\tYOU NEED TO SET A VALID ITEM ID.\n ') end end end removeRecipe()

刪除所有藍圖 CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); CB = CS:GetPlayerCraftBook(); CSCI = CS:GetPlayerCraftableItems(); Recipes = CB:GetCraftableItems(); for i, recipe in ipairs(Recipes) do local TweakID = TDBID.ToStringDEBUG(recipe:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(recipe:GetID()..".displayName")); if CB:KnowsRecipe(TweakID) then if string.find(TweakID, "Material") or string.find(TweakID, "Ammo") or string.find(TweakID, "Items.w_") then print('\t- Default recipe found, skipping... "'..TweakID..'" ( '..recName..' )') else CB:HideRecipe(TweakID, true) print('\t- Recipe REMOVED : "'..TweakID..'" ( '..recName..' )') end end end for i, id in next, CSCI do local TweakID = TDBID.ToStringDEBUG(id:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(id:GetID()..".displayName")); if string.find(TweakID, "

所有已知藍圖 function getRecipesIDs() local CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); local CB = CS:GetPlayerCraftBook(); local PCI = CS:GetPlayerCraftableItems(); print(' \n') for i, recipe in next, PCI do local TweakID = TDBID.ToStringDEBUG(recipe:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(recipe:GetID()..'.displayName')); local recQua = recipe:Quality():Type().value; if string.find(TweakID, "

所有衣服藍圖 for i, v in next, { "UncommonVestRecipe", "RareFormalShoesRecipe", "LegendaryTechRecipe", "EpicLooseShirtRecipe", "UncommonVisorRecipe", "RareFormalPantsRecipe", "EpicShortsRecipe", "EpicHatRecipe", "LegendaryFormalSkirtRecipe", "RareShortsRecipe", "UncommonFormalShoesRecipe", "LegendaryShortsRecipe", "LegendaryShirtRecipe", "UncommonCapRecipe", "LegendaryFormalShoesRecipe", "EpicFormalJacketRecipe", "LegendaryTShirtRecipe", "UncommonBalaclavaRecipe", "LegendaryJacketRecipe", "RareJacketRecipe", "LegendaryCapRecipe", "UncommonHelmetRecipe", "UncommonPantsRecipe", "RareFormalJacketRecipe", "LegendaryCasualShoesRecipe", "Recipe_GOG_Galaxy_TShirt_Epic", "Recipe_GOG_Galaxy_TShirt_Legendary", "EpicPantsRecipe", "RareBootsRecipe", "LegendaryPantsRecipe", "EpicGlassesRecipe", "UncommonFormalSkirtRecipe", "EpicScarfRecipe", "EpicCasualShoesRecipe", "UncommonDressRecipe", "UncommonShirtLooseRecipe", "EpicFormalSkirtRecipe", "UncommonJacketRecipe", "Recipe_Q005_Johnny_Glasses_Epic", "Recipe_Q005_Johnny_Glasses_Legendary", "Recipe_Q005_Johnny_Pants_Epic", "Recipe_Q005_Johnny_Pants_Legendary", "Recipe_Q005_Johnny_Shoes_Epic", "Recipe_Q005_Johnny_Shoes_Legendary", "Recipe_Q005_Johnny_Shirt_Epic", "Recipe_Q005_Johnny_Shirt_Legendary", "EpicHelmetRecipe", "LegendaryJumpsuitRecipe", "UncommonTechRecipe", "EpicMaskRecipe", "EpicFormalShoesRecipe", "LegendaryBootsRecipe", "RareCoatRecipe", "LegendaryHatRecipe", "UncommonMaskRecipe", "EpicUndershirtRecipe", "EpicFormalShirtRecipe", "EpicBootsRecipe", "RareVestRecipe", "RareShirtRecipe", "RareTShirtRecipe", "LegendaryTightJumpsuitRecipe", "UncommonFormalShirtRecipe", "UncommonBootsRecipe", "Recipe_SQ031_Samurai_Jacket_Epic", "Recipe_SQ031_Samurai_Jacket_Legendary", "RareCasualShoesRecipe", "LegendaryScarfRecipe", "LegendaryVestRecipe", "UncommonShirtRecipe", "UncommonUndershirtRecipe", "RareHelmetRecipe", "UncommonFormalPantsRecipe", "RareUndershirtRecipe", "EpicCapRecipe", "EpicCoatRecipe", "RareGlassesRecipe", "LegendaryVisorRecipe", "UncommonCasualShoesRecipe", "LegendaryGlassesRecipe", "RareScarfRecipe", "RareMaskRecipe", "RareTechRecipe", "EpicTShirtRecipe", "LegendaryFormalPantsRecipe", "RareHatRecipe", "RarePantsRecipe", "Recipe_GOG_DLC_Jacket_Epic", "Recipe_GOG_DLC_Jacket_Legendary", "Recipe_GOG_DLC_TShirt_Epic", "Recipe_GOG_DLC_TShirt_Legendary", "EpicVisorRecipe", "Recipe_GOG_Galaxy_TShirt", "Recipe_GOG_DLC_TShirt", "Recipe_Jacket_19_basic_04_DLC_Epic", "Recipe_Jacket_19_basic_04_DLC_Legendary", "Recipe_Jacket_20_basic_01_DLC_Epic", "Recipe_Jacket_20_basic_01_DLC_Legendary", "Recipe_Jacket_19_basic_04_DLC", "Recipe_Jacket_20_basic_01_DLC", "Recipe_GOG_DLC_Jacket" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL CLOTHES RECIPES")

所有手雷藍圖 for i, v in next, { "RecipeGrenadeIncendiaryRegular", "RecipeGrenadeIncendiarySticky", "RecipeGrenadeIncendiaryHoming", "RecipeGrenadeEMPRegular", "RecipeGrenadeEMPSticky", "RecipeGrenadeEMPHoming", "RecipeGrenadeFragRegular", "RecipeGrenadeFragSticky", "RecipeGrenadeFragHoming", "RecipeGrenadeCuttingRegular", "RecipeGrenadeBiohazardRegular", "RecipeGrenadeBiohazardHoming", "RecipeGrenadeOzobsNose", "RecipeGrenadeReconRegular", "RecipeGrenadeReconSticky", "RecipeGrenadeFlashRegular", "RecipeGrenadeFlashHoming", "RecipeGrenadeIncendiaryRare", "RecipeGrenadeEMPRare", "RecipeGrenadeReconRare", "RecipeGrenadeSmokeRare", "RecipeGrenadeEMPUncommon", "RecipeGrenadeFragUncommon", "RecipeGrenadeSmokeRegular", "RecipeGrenadeFlashUncommon", "RecipeGrenadeFragEpic", "RecipeGrenadeSmokeEpic", "RecipeGrenadeFlashEpic", "RecipeGrenadeIncendiaryLegendary", "RecipeGrenadeEMPLegendary", "RecipeGrenadeBiohazardLegendary", "RecipeGrenadeReconLegendary", "RecipeGrenadeSmokeLegendary", "RecipeGrenadeFlashLegendary" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL GRENADES RECIPES")

所有插件藍圖 for i, v in next, { "Recipe_BerserkFragment1", "Recipe_BerserkFragment2", "Recipe_BerserkFragment3", "Recipe_BerserkFragment4", "Recipe_BerserkFragment5", "Recipe_BerserkFragment6", "Recipe_BerserkFragment7", "Recipe_BerserkFragment8", "Recipe_AnimalsBerserkFragment1", "Recipe_ArasakaSandevistanFragment1", "Recipe_ArmsCyberwareSharedFragment1", "Recipe_ArmsCyberwareSharedFragment2", "Recipe_ArmsCyberwareSharedFragment3", "Recipe_ArmsCyberwareSharedFragment4", "Recipe_ChemicalDamageCable", "Recipe_ChemicalDamageEdge", "Recipe_ChemicalDamageKnuckles", "Recipe_ChemicalDamageRound", "Recipe_ElectricDamageCable", "Recipe_ElectricDamageEdge", "Recipe_ElectricDamageKnuckles", "Recipe_ElectricDamageRound", "Recipe_ExplosiveDamageRound", "Recipe_FastRotor", "Recipe_HighChargedBattery", "Recipe_HighChargedWiresBattery", "Recipe_KiroshiOpticsFragment1", "Recipe_KiroshiOpticsFragment2", "Recipe_KiroshiOpticsFragment3", "Recipe_KiroshiOpticsFragment4", "Recipe_KiroshiOpticsFragment5", "Recipe_LowChargedBattery", "Recipe_LowChargedWiresBattery", "Recipe_MediumChargedBattery", "Recipe_MediumChargedWiresBattery", "Recipe_MetalPlating", "Recipe_NeoplasticPlating", "Recipe_PhysicalDamageCable", "Recipe_PhysicalDamageEdge", "Recipe_PhysicalDamageKnuckles", "Recipe_SandevistanFragment1", "Recipe_SandevistanFragment2", "Recipe_SandevistanFragment3", "Recipe_SandevistanFragment4", "Recipe_SlowRotor", "Recipe_ThermalDamageCable", "Recipe_ThermalDamageEdge", "Recipe_ThermalDamageKnuckles", "Recipe_ThermalDamageRound", "Recipe_TitaniumPlating", "Recipe_TygerClawsSandevistanFragment1", "Recipe_ValentinosSandevistanFragment1", "ARSMGLMGMod1_Rare_Recipe", "ARSMGLMGMod3_Rare_Recipe", "ARSMGLMGMod2_Rare_Recipe", "BlaDemod1_Rare_Recipe", "BlaDemod3_Rare_Recipe", "BluntMod2_Rare_Recipe", "BluntMod1_Rare_Recipe", "MeleeMod1_Rare_Recipe", "MeleeMod2_Rare_Recipe", "MeleeMod3_Rare_Recipe", "HGMod3_Rare_Recipe", "HGMod1_Rare_Recipe", "HGMod2_Rare_Recipe", "PowerMod3_Rare_Recipe", "PowerMod1_Rare_Recipe", "PowerMod2_Rare_Recipe", "RangedMod3_Rare_Recipe", "RangedMod2_Rare_Recipe", "ShotgunMod3_Rare_Recipe", "ShotgunMod1_Rare_Recipe", "SmartMod2_Rare_Recipe", "SmartMod3_Rare_Recipe", "PRSRMod3_Rare_Recipe", "PRSRMod2_Rare_Recipe", "PRSRMod1_Rare_Recipe", "TechMod2_Rare_Recipe", "TechMod1_Rare_Recipe", "TechMod3_Rare_Recipe", "ThrowMod1_Rare_Recipe", "ThrowMod3_Rare_Recipe", "GenericMod1_Rare_Recipe", "ARSMGLMGMod1_Uncommon_Recipe", "ARSMGLMGMod3_Uncommon_Recipe", "ARSMGLMGMod2_Uncommon_Recipe", "BlaDemod1_Uncommon_Recipe", "BlaDemod3_Uncommon_Recipe", "BluntMod2_Uncommon_Recipe", "BluntMod1_Uncommon_Recipe", "MeleeMod1_Uncommon_Recipe", "MeleeMod2_Uncommon_Recipe", "MeleeMod3_Uncommon_Recipe", "HGMod3_Uncommon_Recipe", "HGMod1_Uncommon_Recipe", "HGMod2_Uncommon_Recipe", "PowerMod3_Uncommon_Recipe_1", "PowerMod1_Uncommon_Recipe", "RangedMod3_Uncommon_Recipe", "RangedMod2_Uncommon_Recipe", "ShotgunMod3_Uncommon_Recipe", "ShotgunMod1_Uncommon_Recipe", "SmartMod2_Uncommon_Recipe", "SmartMod3_Uncommon_Recipe", "PRSRMod3_Uncommon_Recipe", "PRSRMod2_Uncommon_Recipe", "PRSRMod1_Uncommon_Recipe", "TechMod2_Uncommon_Recipe", "TechMod1_Uncommon_Recipe", "TechMod3_Uncommon_Recipe", "ThrowMod1_Uncommon_Recipe", "ThrowMod3_Uncommon_Recipe", "GenericMod1_Uncommon_Recipe", "ARSMGLMGMod1_Epic_Recipe", "ARSMGLMGMod3_Epic_Recipe", "ARSMGLMGMod2_Epic_Recipe", "BlaDemod1_Epic_Recipe", "BlaDemod3_Epic_Recipe", "BluntMod2_Epic_Recipe", "BluntMod1_Epic_Recipe", "MeleeMod1_Epic_Recipe", "MeleeMod2_Epic_Recipe", "MeleeMod3_Epic_Recipe", "HGMod3_Epic_Recipe", "HGMod1_Epic_Recipe", "HGMod2_Epic_Recipe", "PowerMod3_Epic_Recipe", "PowerMod1_Epic_Recipe", "PowerMod2_Epic_Recipe", "RangedMod3_Epic_Recipe", "RangedMod2_Epic_Recipe", "ShotgunMod3_Epic_Recipe", "ShotgunMod1_Epic_Recipe", "SmartMod2_Epic_Recipe", "SmartMod3_Epic_Recipe", "PRSRMod3_Epic_Recipe", "PRSRMod2_Epic_Recipe", "PRSRMod1_Epic_Recipe", "TechMod2_Epic_Recipe", "TechMod1_Epic_Recipe", "TechMod3_Epic_Recipe", "ThrowMod1_Epic_Recipe", "ThrowMod3_Epic_Recipe", "ThrowMod2_Epic_Recipe", "GenericMod1_Epic_Recipe", "ARSMGLMGMod1_Legendary_Recipe", "ARSMGLMGMod3_Legendary_Recipe", "ARSMGLMGMod2_Legendary_Recipe", "BlaDemod1_Legendary_Recipe", "BlaDemod3_Legendary_Recipe", "BluntMod3_Legendary_Recipe", "BluntMod2_Legendary_Recipe", "BluntMod1_Legendary_Recipe", "MeleeMod1_Legendary_Recipe", "MeleeMod2_Legendary_Recipe", "ChimeraMeleeMod_Recipe", "MeleeMod3_Legendary_Recipe", "HGMod3_Legendary_Recipe", "HGMod1_Legendary_Recipe", "HGMod2_Legendary_Recipe", "PowerMod3_Legendary_Recipe", "ChimeraPowerMod_Recipe", "PowerMod1_Legendary_Recipe", "PowerMod2_Legendary_Recipe", "RangedMod1_Legendary_Recipe", "RangedMod3_Legendary_Recipe", "RangedMod2_Legendary_Recipe", "ShotgunMod3_Legendary_Recipe", "ShotgunMod1_Legendary_Recipe", "SmartMod1_Legendary_Recipe", "SmartMod2_Legendary_Recipe", "ChimeraSmartMod_Recipe", "SmartMod3_Legendary_Recipe", "PRSRMod3_Legendary_Recipe", "PRSRMod2_Legendary_Recipe", "PRSRMod1_Legendary_Recipe", "TechMod2_Legendary_Recipe", "TechMod1_Legendary_Recipe", "TechMod3_Legendary_Recipe", "ChimeraTechMod_Recipe", "ThrowMod1_Legendary_Recipe", "ThrowMod3_Legendary_Recipe", "ThrowMod2_Legendary_Recipe", "GenericMod1_Legendary_Recipe" } do Game.AddToInventory("Items."..v, 1) end print(" - Added: ALL MODS RECIPES")

所有快速破解藍圖 for i, v in next, { "Recipe_ContagionProgram", "Recipe_ContagionLvl2Program", "Recipe_ContagionLvl3Program", "Recipe_ContagionLvl4Program", "Recipe_LocomotionMalfunctionProgram", "Recipe_LocomotionMalfunctionLvl2Program", "Recipe_LocomotionMalfunctionLvl3Program", "Recipe_LocomotionMalfunctionLvl4Program", "Recipe_MadnessLvl3Program", "Recipe_MadnessLvl4Program", "Recipe_DisableCyberwareProgram", "Recipe_DisableCyberwareLvl2Program", "Recipe_DisableCyberwareLvl3Program", "Recipe_GrenadeExplodeLvl3Program", "Recipe_GrenadeExplodeLvl4Program", "Recipe_MemoryWipeLvl2Program", "Recipe_MemoryWipeLvl3Program", "Recipe_OverheatProgram", "Recipe_OverheatLvl2Program", "Recipe_OverheatLvl3Program", "Recipe_OverheatLvl4Program", "Recipe_PingProgram", "Recipe_PingLvl2Program", "Recipe_PingLvl3Program", "Recipe_PingLvl4Program", "Recipe_BlindLvl2Program", "Recipe_BlindLvl3Program", "Recipe_BlindLvl4Program", "Recipe_BlindProgram", "Recipe_CommsCallInProgram", "Recipe_CommsCallInLvl3Program", "Recipe_EMPOverloadProgram", "Recipe_EMPOverloadLvl2Program", "Recipe_EMPOverloadLvl3Program", "Recipe_EMPOverloadLvl4Program", "Recipe_CommsNoiseProgram", "Recipe_CommsNoiseLvl2Program", "Recipe_CommsNoiseLvl3Program", "Recipe_CommsNoiseLvl4Program", "Recipe_SuicideLvl3Program", "Recipe_SuicideLvl4Program", "Recipe_BrainMeltLvl2Program", "Recipe_BrainMeltLvl3Program", "Recipe_BrainMeltLvl4Program", "Recipe_SystemCollapseLvl3Program", "Recipe_SystemCollapseLvl4Program", "Recipe_WeaponMalfunctionProgram", "Recipe_WeaponMalfunctionLvl2Program", "Recipe_WeaponMalfunctionLvl3Program", "Recipe_WeaponMalfunctionLvl4Program", "Recipe_WhistleProgram", "Recipe_WhistleLvl2Program", "Recipe_WhistleLvl3Program", "Recipe_WhistleLvl0Program", "Recipe_CommsCallInLvl2Program", "Recipe_WhistleLvl1Program", "Recipe_OverheatLvl1Program", "Recipe_BlindLvl1Program", "Recipe_CommsCallInLvl1Program", "Recipe_EMPOverloadLvl1Program", "Recipe_WhistleLvl4Program", "Recipe_WhistleLvl4PlusPlusProgram", "Recipe_ContagionLvl4PlusPlusProgram", "Recipe_LocomotionMalfunctionLvl4PlusPlusProgram", "Recipe_MadnessLvl4PlusPlusProgram", "Recipe_DisableCyberwareLvl4Program", "Recipe_DisableCyberwareLvl4PlusPlusProgram", "Recipe_GrenadeExplodeLvl4PlusPlusProgram", "Recipe_MemoryWipeLvl4Program", "Recipe_MemoryWipeLvl4PlusPlusProgram", "Recipe_OverheatLvl4PlusPlusProgram", "Recipe_PingLvl4PlusPlusProgram", "Recipe_BlindLvl4PlusPlusProgram", "Recipe_CommsCallInLvl4Program", "Recipe_CommsCallInLvl4PlusPlusProgram", "Recipe_EMPOverloadLvl4PlusPlusProgram", "Recipe_CommsNoiseLvl4PlusPlusProgram", "Recipe_SuicideLvl4PlusPlusProgram", "Recipe_BrainMeltLvl4PlusPlusProgram", "Recipe_SystemCollapseLvl4PlusPlusProgram", "Recipe_WeaponMalfunctionLvl4PlusPlusProgram" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL QUICKHACKS RECIPES")

所有武器藍圖 for i, v in next, { "CommonKatanaMilitaryRecipe", "UncommonKatanaMilitaryRecipe", "RareKatanaMilitaryRecipe", "EpicKatanaMilitaryRecipe", "LegendaryKatanaMilitaryRecipe", "CommonAchillesRecipe", "CommonAjaxRecipe", "CommonAshuraRecipe", "CommonBatonAlphaRecipe", "CommonBatonBetaRecipe", "CommonBatonGammaRecipe", "CommonBatRecipe", "CommonBuryaRecipe", "CommonButchersKnifeRecipe", "CommonCarnageRecipe", "CommonChaoRecipe", "CommonChefsKnifeRecipe", "CommonCopperheadRecipe", "CommonCrowbarRecipe", "CommonCrusherRecipe", "CommonDefenderRecipe", "CommonDianRecipe", "CommonGradRecipe", "CommonGuillotineRecipe", "CommonHammerRecipe", "CommonIglaRecipe", "CommonIronPipeRecipe", "CommonKanaboRecipe", "CommonKatanaRecipe", "CommonKenshinRecipe", "CommonKnifeRecipe", "CommonKukriRecipe", "CommonLexingtonRecipe", "CommonLibertyRecipe", "CommonMacheteRecipe", "CommonMasamuneRecipe", "CommonNekomataRecipe", "CommonNovaRecipe", "CommonNueRecipe", "CommonOmahaRecipe", "CommonOvertureRecipe", "CommonPalicaRecipe", "CommonPipeWrenchRecipe", "CommonPulsarRecipe", "CommonQuasarRecipe", "CommonSaratogaRecipe", "CommonSataraRecipe", "CommonShingenRecipe", "CommonSidewinderRecipe", "CommonSor22Recipe", "CommonTacticianRecipe", "CommonTantoRecipe", "CommonTesteraRecipe", "CommonTireIronRecipe", "CommonTomahawkRecipe", "CommonUmbraRecipe", "CommonUnityRecipe", "CommonYukimuraRecipe", "CommonZhuoRecipe", "EpicAchillesRecipe", "EpicAjaxRecipe", "EpicAshuraRecipe", "EpicBatonAlphaRecipe", "EpicBatonBetaRecipe", "EpicBatonGammaRecipe", "EpicBatRecipe", "EpicBuryaRecipe", "EpicButchersKnifeRecipe", "EpicCarnageRecipe", "EpicChaoRecipe", "EpicChefsKnifeRecipe", "EpicCopperheadRecipe", "EpicCrowbarRecipe", "EpicCrusherRecipe", "EpicDefenderRecipe", "EpicDianRecipe", "EpicGradRecipe", "EpicGuillotineRecipe", "EpicHammerRecipe", "EpicIglaRecipe", "EpicIronPipeRecipe", "EpicKanaboRecipe", "EpicKatanaRecipe", "EpicKenshinRecipe", "EpicKnifeRecipe", "EpicKukriRecipe", "EpicLexingtonRecipe", "EpicLibertyRecipe", "EpicMacheteRecipe", "EpicMasamuneRecipe", "EpicNekomataRecipe", "EpicNovaRecipe", "EpicNueRecipe", "EpicOmahaRecipe", "EpicOvertureRecipe", "EpicPalicaRecipe", "EpicPipeWrenchRecipe", "EpicPipeWrenchRecipe", "EpicPulsarRecipe", "EpicQuasarRecipe", "EpicSaratogaRecipe", "EpicSataraRecipe", "EpicShingenRecipe", "EpicSidewinderRecipe", "EpicSor22Recipe", "EpicTacticianRecipe", "EpicTantoRecipe", "EpicTesteraRecipe", "EpicTireIronRecipe", "EpicTomahawkRecipe", "EpicUmbraRecipe", "EpicUnityRecipe", "EpicYukimuraRecipe", "EpicZhuoRecipe", "LegendaryAchillesRecipe", "LegendaryAjaxRecipe", "LegendaryAshuraRecipe", "LegendaryBatonAlphaRecipe", "LegendaryBatonBetaRecipe", "LegendaryBatonGammaRecipe", "LegendaryBatRecipe", "LegendaryBuryaRecipe", "LegendaryButchersKnifeRecipe", "LegendaryCarnageRecipe", "LegendaryChaoRecipe", "LegendaryChefsKnifeRecipe", "LegendaryCopperheadRecipe", "LegendaryCrowbarRecipe", "LegendaryCrusherRecipe", "LegendaryDefenderRecipe", "LegendaryDianRecipe", "LegendaryGradRecipe", "LegendaryGuillotineRecipe", "LegendaryHammerRecipe", "LegendaryIglaRecipe", "LegendaryIronPipeRecipe", "LegendaryKanaboRecipe", "LegendaryKatanaRecipe", "LegendaryKenshinRecipe", "LegendaryKnifeRecipe", "LegendaryKukriRecipe", "LegendaryLexingtonRecipe", "LegendaryLibertyRecipe", "LegendaryMacheteRecipe", "LegendaryMasamuneRecipe", "LegendaryNekomataRecipe", "LegendaryNovaRecipe", "LegendaryNueRecipe", "LegendaryOmahaRecipe", "LegendaryOvertureRecipe", "LegendaryPalicaRecipe", "LegendaryPipeWrenchRecipe", "LegendaryPulsarRecipe", "LegendaryQuasarRecipe", "LegendarySaratogaRecipe", "LegendarySataraRecipe", "LegendaryShingenRecipe", "LegendarySidewinderRecipe", "LegendarySor22Recipe", "LegendaryTacticianRecipe", "LegendaryTantoRecipe", "LegendaryTesteraRecipe", "LegendaryTireIronRecipe", "LegendaryTomahawkRecipe", "LegendaryUmbraRecipe", "LegendaryUnityRecipe", "LegendaryYukimuraRecipe", "LegendaryZhuoRecipe", "RareAchillesRecipe", "RareAjaxRecipe", "RareAshuraRecipe", "RareBatonAlphaRecipe", "RareBatonBetaRecipe", "RareBatonGammaRecipe", "RareBatRecipe", "RareBuryaRecipe", "RareButchersKnifeRecipe", "RareCarnageRecipe", "RareChaoRecipe", "RareChefsKnifeRecipe", "RareCopperheadRecipe", "RareCrowbarRecipe", "RareCrusherRecipe", "RareDefenderRecipe", "RareDianRecipe", "RareGradRecipe", "RareGuillotineRecipe", "RareHammerRecipe", "RareIglaRecipe", "RareIronPipeRecipe", "RareKanaboRecipe", "RareKatanaRecipe", "RareKenshinRecipe", "RareKnifeRecipe", "RareKukriRecipe", "RareLexingtonRecipe", "RareLibertyRecipe", "RareMacheteRecipe", "RareMasamuneRecipe", "RareNekomataRecipe", "RareNovaRecipe", "RareNueRecipe", "RareOmahaRecipe", "RareOvertureRecipe", "RarePalicaRecipe", "RarePipeWrenchRecipe", "RarePulsarRecipe", "RareQuasarRecipe", "RareSaratogaRecipe", "RareSataraRecipe", "RareShingenRecipe", "RareSidewinderRecipe", "RareSor22Recipe", "RareTacticianRecipe", "RareTantoRecipe", "RareTesteraRecipe", "RareTireIronRecipe", "RareTomahawkRecipe", "RareUmbraRecipe", "RareUnityRecipe", "RareYukimuraRecipe", "RareZhuoRecipe", "Recipe_Preset_Achilles_Nash_Epic", "Recipe_Preset_Achilles_Nash_Legendary", "Recipe_Preset_Ajax_Moron", "Recipe_Preset_Ajax_Moron_Legendary", "Recipe_Preset_Baseball_Bat_Denny_Epic", "Recipe_Preset_Baseball_Bat_Denny_Legendary", "Recipe_Preset_Baton_Tinker_Bell_Epic", "Recipe_Preset_Baton_Tinker_Bell_Legendary", "Recipe_Preset_Burya_Comrade", "Recipe_Preset_Burya_Comrade_Legendary", "Recipe_Preset_Cane_Fingers_Epic", "Recipe_Preset_Cane_Fingers_Legendary", "Recipe_Preset_Carnage_Mox_Epic", "Recipe_Preset_Carnage_Mox_Legendary", "Recipe_Preset_Copperhead_Genesis", "Recipe_Preset_Copperhead_Genesis_Epic", "Recipe_Preset_Copperhead_Genesis_Legendary", "Recipe_Preset_Dian_Yinglong", "Recipe_Preset_Dildo_Stout_Epic", "Recipe_Preset_Dildo_Stout_Legendary", "Recipe_Preset_Grad_Buck_Legendary", "Recipe_Preset_Grad_Panam", "Recipe_Preset_Grad_Panam_Epic", "Recipe_Preset_Grad_Panam_Legendary", "Recipe_Preset_Igla_Sovereign", "Recipe_Preset_Igla_Sovereign_Legendary", "Recipe_Preset_Katana_Cocktail_Epic", "Recipe_Preset_Katana_Cocktail_Legendary", "Recipe_Preset_Katana_GoG_Epic", "Recipe_Preset_Katana_GoG_Legendary", "Recipe_Preset_Katana_Hiromi_Epic", "Recipe_Preset_Katana_Hiromi_Legendary", "Recipe_Preset_Katana_Saburo_Epic", "Recipe_Preset_Katana_Saburo_Legendary", "Recipe_Preset_Katana_Surgeon_Epic", "Recipe_Preset_Katana_Surgeon_Legendary", "Recipe_Preset_Katana_Takemura_Legendary", "Recipe_Preset_Kenshin_Frank_Legendary", "Recipe_Preset_Kenshin_Royce_Epic", "Recipe_Preset_Kenshin_Royce_Legendary", "Recipe_Preset_Knife_Stinger_Epic", "Recipe_Preset_Knife_Stinger_Legendary", "Recipe_Preset_Lexington_Wilson_Epic", "Recipe_Preset_Lexington_Wilson_Legendary", "Recipe_Preset_Lexington_Wilson_Rare", "Recipe_Preset_Liberty_Dex_Epic", "Recipe_Preset_Liberty_Dex_Legendary", "Recipe_Preset_Liberty_Yorinobu_Epic", "Recipe_Preset_Liberty_Yorinobu_Legendary", "Recipe_Preset_Nekomata_Breakthrough", "Recipe_Preset_Nekomata_Breakthrough_Legendary", "Recipe_Preset_Nova_Doom_Doom_Epic", "Recipe_Preset_Nova_Doom_Doom_Legendary", "Recipe_Preset_Nue_Jackie_Epic", "Recipe_Preset_Nue_Jackie_Legendary", "Recipe_Preset_Nue_Maiko_Epic", "Recipe_Preset_Nue_Maiko_Legendary", "Recipe_Preset_Omaha_Suzie_Epic", "Recipe_Preset_Omaha_Suzie_Legendary", "Recipe_Preset_Overture_Cassidy_Legendary", "Recipe_Preset_Overture_Kerry_Epic", "Recipe_Preset_Overture_Kerry_Legendary", "Recipe_Preset_Overture_River_Legendary", "Recipe_Preset_Pulsar_Buzzsaw", "Recipe_Preset_Pulsar_Buzzsaw_Epic", "Recipe_Preset_Pulsar_Buzzsaw_Legendary", "Recipe_Preset_Saratoga_Maelstrom_Epic", "Recipe_Preset_Saratoga_Maelstrom_Legendary", "Recipe_Preset_Saratoga_Raffen_Epic", "Recipe_Preset_Saratoga_Raffen_Legendary", "Recipe_Preset_Sidewinder_Divided_Epic", "Recipe_Preset_Sidewinder_Divided_Legendary", "Recipe_Preset_Tactician_Headsman", "Recipe_Preset_Tactician_Headsman_Legendary", "Recipe_Preset_Yukimura_Kiji_Legendary", "Recipe_Preset_Zhuo_Eight_Star", "UncommonAchillesRecipe", "UncommonAjaxRecipe", "UncommonAshuraRecipe", "UncommonBatonBetaRecipe", "UncommonBatonGammaRecipe", "UncommonBatonRecipe", "UncommonBatRecipe", "UncommonBuryaRecipe", "UncommonButchersKnifeRecipe", "UncommonCarnageRecipe", "UncommonChaoRecipe", "UncommonChefsKnifeRecipe", "UncommonCopperheadRecipe", "UncommonCrowbarRecipe", "UncommonCrusherRecipe", "UncommonDefenderRecipe", "UncommonDianRecipe", "UncommonGradRecipe", "UncommonGuillotineRecipe", "UncommonHammerRecipe", "UncommonIglaRecipe", "UncommonIronPipeRecipe", "UncommonKanaboRecipe", "UncommonKatanaRecipe", "UncommonKenshinRecipe", "UncommonKnifeRecipe", "UncommonKukriRecipe", "UncommonLexingtonRecipe", "UncommonLibertyRecipe", "UncommonMacheteRecipe", "UncommonMasamuneRecipe", "UncommonNekomataRecipe", "UncommonNovaRecipe", "UncommonNueRecipe", "UncommonOmahaRecipe", "UncommonOvertureRecipe", "UncommonPalicaRecipe", "UncommonPipeWrenchRecipe", "UncommonPulsarRecipe", "UncommonQuasarRecipe", "UncommonSaratogaRecipe", "UncommonSataraRecipe", "UncommonShingenRecipe", "UncommonSidewinderRecipe", "UncommonSor22Recipe", "UncommonTacticianRecipe", "UncommonTantoRecipe", "UncommonTesteraRecipe", "UncommonTireIronRecipe", "UncommonTomahawkRecipe", "UncommonUmbraRecipe", "UncommonUnityRecipe", "UncommonYukimuraRecipe", "UncommonZhuoRecipe", "CommonSenkohRecipe", "UncommonSenkohRecipe", "RareSenkohRecipe", "EpicSenkohRecipe", "LegendarySenkohRecipe", "CommonNeurotoxinKnifeRecipe", "UncommonNeurotoxinKnifeRecipe", "RareNeurotoxinKnifeRecipe", "EpicNeurotoxinKnifeRecipe", "LegendaryNeurotoxinKnifeRecipe", "CommonFangedAxeRecipe", "UncommonFangedAxeRecipe", "RareFangedAxeRecipe", "EpicFangedAxeRecipe", "LegendaryFangedAxeRecipe", "CommonChainswordRecipe", "UncommonChainswordRecipe", "RareChainswordRecipe", "EpicChainswordRecipe", "LegendaryChainswordRecipe", "CommonPunkKnifeRecipe", "UncommonPunkKnifeRecipe", "RarePunkKnifeRecipe", "EpicPunkKnifeRecipe", "LegendaryPunkKnifeRecipe", "CommonMA70Recipe", "UncommonMA70Recipe", "RareMA70Recipe", "EpicMA70Recipe", "LegendaryMA70Recipe", "CommonMacheteBorgRecipe", "UncommonMacheteBorgRecipe", "RareMacheteBorgRecipe", "EpicMacheteBorgRecipe", "LegendaryMacheteBorgRecipe", "CommonPozharRecipe", "UncommonPozharRecipe", "RarePozharRecipe", "EpicPozharRecipe", "LegendaryPozharRecipe", "CommonKappaRecipe", "UncommonKappaRecipe", "RareKappaRecipe", "EpicKappaRecipe", "LegendaryKappaRecipe", "CommonKyubiRecipe", "UncommonKyubiRecipe", "RareKyubiRecipe", "EpicKyubiRecipe", "LegendaryKyubiRecipe", "Recipe_Preset_Neurotoxin_Knife_Iconic_Epic", "Recipe_Preset_Neurotoxin_Knife_Iconic_Legendary", "Recipe_Preset_Butchers_Knife_Iconic_Epic", "Recipe_Preset_Butchers_Knife_Iconic_Legendary", "Recipe_Preset_Carnage_Edgerunners_Legendary", "Recipe_Preset_Punk_Knife_Iconic_Epic", "Recipe_Preset_Punk_Knife_Iconic_Legendary", "Recipe_Preset_Kolac_Tiny_Mike_Legendary", "Recipe_Preset_Tactician_Dino_Legendary", "Recipe_Common_Nekomata_Breakthrough", "Recipe_Preset_Liberty_Padre_Legendary", "Recipe_Common_Dian_Yinglong", "CommonWardenRecipe", "Recipe_Common_Pulsar_Buzzsaw", "Recipe_Common_Tactician_Headsman", "Recipe_Common_Zhuo_Eight_Star", "Recipe_Common_Burya_Comrade", "Recipe_Preset_Katana_GoG", "Recipe_Common_Copperhead_Genesis", "CommonTiconRecipe", "Recipe_Common_Igla_Sovereign", "Recipe_Common_Borg4a_HauntedGun", "Recipe_Common_Ajax_Moron", "CommonMetelRecipe", "Recipe_Preset_Katana_Wakako_Legendary", "Recipe_Preset_Borg4a_HauntedGun", "CommonGritRecipe", "Recipe_Rare_Ajax_Moron", "Recipe_Rare_Copperhead_Genesis", "Recipe_Rare_Igla_Sovereign", "RareGritRecipe", "RareTiconRecipe", "Recipe_Rare_Burya_Comrade", "RareMetelRecipe", "Recipe_Rare_Zhuo_Eight_Star", "Recipe_Rare_Tactician_Headsman", "Recipe_Rare_Pulsar_Buzzsaw", "Recipe_Rare_Borg4a_HauntedGun", "RareWardenRecipe", "Recipe_Rare_Dian_Yinglong", "Recipe_Rare_Nekomata_Breakthrough", "Recipe_Uncommon_Ajax_Moron", "Recipe_Uncommon_Copperhead_Genesis", "Recipe_Uncommon_Igla_Sovereign", "UncommonGritRecipe", "UncommonTiconRecipe", "Recipe_Uncommon_Burya_Comrade", "UncommonMetelRecipe", "Recipe_Uncommon_Zhuo_Eight_Star", "Recipe_Uncommon_Tactician_Headsman", "Recipe_Uncommon_Pulsar_Buzzsaw", "Recipe_Uncommon_Borg4a_HauntedGun", "UncommonWardenRecipe", "Recipe_Uncommon_Dian_Yinglong", "Recipe_Uncommon_Nekomata_Breakthrough", "Recipe_Epic_Ajax_Moron", "Recipe_Epic_Copperhead_Genesis", "Recipe_Epic_Igla_Sovereign", "EpicGritRecipe", "EpicTiconRecipe", "Recipe_Epic_Burya_Comrade", "EpicMetelRecipe", "Recipe_Epic_Zhuo_Eight_Star", "Recipe_Epic_Tactician_Headsman", "Recipe_Epic_Pulsar_Buzzsaw", "Recipe_Epic_Borg4a_HauntedGun", "EpicWardenRecipe", "Recipe_Epic_Dian_Yinglong", "Recipe_Epic_Nekomata_Breakthrough", "Recipe_Legendary_Ajax_Moron", "Recipe_Legendary_Copperhead_Genesis", "Recipe_Legendary_Igla_Sovereign", "LegendaryGritRecipe", "LegendaryTiconRecipe", "Recipe_Legendary_Burya_Comrade", "LegendaryMetelRecipe", "Recipe_Legendary_Zhuo_Eight_Star", "Recipe_Legendary_Tactician_Headsman", "Recipe_Legendary_Pulsar_Buzzsaw", "Recipe_Legendary_Borg4a_HauntedGun", "LegendaryWardenRecipe", "Recipe_Legendary_Dian_Yinglong", "Recipe_Legendary_Nekomata_Breakthrough" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL WEAPONS RECIPES")

製作規範:厄瑞玻斯 Game.AddToInventory("Items.Recipe_Preset_Borg4a_HauntedGun",1)

製作規範:軍用科技篇章6型 Game.AddToInventory("Items.Recipe_Legendary_HauntedCyberdeck",1)

製作規範:電鋸 Game.AddToInventory("Items.Recipe_Legendary_Pulsar_Buzzsaw",1)

製作規範:電鋸 Game.AddToInventory("Items.Recipe_Preset_Pulsar_Buzzsaw_Legendary",1)

製作規範:你要戰便來戰 Game.AddToInventory("Items.Recipe_Legendary_Ajax_Moron",1)

製作規範:應龍 Game.AddToInventory("Items.Recipe_Legendary_Dian_Yinglong",1)

製作規範:寡婦製造者 Game.AddToInventory("Items.Recipe_Preset_Achilles_Nash_Legendary",1)

製作規範: 主權 Game.AddToInventory("Items.Recipe_Legendary_Igla_Sovereign",1)

製作規範: 主權 Game.AddToInventory("Items.Recipe_Preset_Igla_Sovereign_Legendary",1)

製作規範:儈子手 Game.AddToInventory("Items.Recipe_Legendary_Tactician_Headsman",1)

製作規範:儈子手 Game.AddToInventory("Items.Recipe_Preset_Tactician_Headsman_Legendary",1)

製作規範:小叮噹 Game.AddToInventory("Items.Recipe_Preset_Baton_Tinker_Bell_Legendary",1)

製作規範:同誌的鐵錘 Game.AddToInventory("Items.Recipe_Preset_Burya_Comrade_Legendary",1)

製作規範:屠夫的切肉刀 Game.AddToInventory("Items.Recipe_Preset_Butchers_Knife_Iconic_Legendary",1)

製作規範:水蝮蛇 Game.AddToInventory("Items.Recipe_Preset_Cane_Fingers_Legendary",1)

製作規範:鐵膽 Game.AddToInventory("Items.Recipe_Preset_Carnage_Edgerunners_Legendary",1)

製作規範:莫克斯幫 Game.AddToInventory("Items.Recipe_Preset_Carnage_Mox_Legendary",1)

製作規範:詩篇11:6 Game.AddToInventory("Items.Recipe_Preset_Copperhead_Genesis_Legendary",1)

製作規範:藤井偽器 Game.AddToInventory("Items.Recipe_Preset_Dildo_Stout_Legendary",1)

製作規範:零五 Game.AddToInventory("Items.Recipe_Preset_Grad_Buck_Legendary",1)

製作規範:守望 Game.AddToInventory("Items.Recipe_Preset_Grad_Panam_Legendary",1)

製作規範:雞尾酒棒 Game.AddToInventory("Items.Recipe_Preset_Katana_Cocktail_Legendary",1)

製作規範:黑獨角獸 Game.AddToInventory("Items.Recipe_Preset_Katana_GoG_Legendary",1)

製作規範:爪磨 Game.AddToInventory("Items.Recipe_Preset_Katana_Hiromi_Legendary",1)

製作規範:覺 Game.AddToInventory("Items.Recipe_Preset_Katana_Saburo_Legendary",1)

製作規範:手術刀 Game.AddToInventory("Items.Recipe_Preset_Katana_Surgeon_Legendary",1)

製作規範:盡忠丸 Game.AddToInventory("Items.Recipe_Preset_Katana_Takemura_Legendary",1)

製作規範:白虎 Game.AddToInventory("Items.Recipe_Preset_Katana_Wakako_Legendary",1)

製作規範:幽影 Game.AddToInventory("Items.Recipe_Preset_Kenshin_Frank_Legendary",1)

製作規範:混亂 Game.AddToInventory("Items.Recipe_Preset_Kenshin_Royce_Legendary",1)

製作規範:毒刺 Game.AddToInventory("Items.Recipe_Preset_Knife_Stinger_Legendary",1)

製作規範:吹毛求疵 Game.AddToInventory("Items.Recipe_Preset_Kolac_Tiny_Mike_Legendary",1)

製作規範:終夜 Game.AddToInventory("Items.Recipe_Preset_Lexington_Wilson_Legendary",1)

製作規範:退路 Game.AddToInventory("Items.Recipe_Preset_Liberty_Dex_Legendary",1)

製作規範:熾天使 Game.AddToInventory("Items.Recipe_Preset_Liberty_Padre_Legendary",1)

製作規範:金剛 Game.AddToInventory("Items.Recipe_Preset_Liberty_Yorinobu_Legendary",1)

製作規範:突破 Game.AddToInventory("Items.Recipe_Preset_Nekomata_Breakthrough_Legendary",1)

製作規範:青牙 Game.AddToInventory("Items.Recipe_Preset_Neurotoxin_Knife_Iconic_Legendary",1)

製作規範:大木大木 Game.AddToInventory("Items.Recipe_Preset_Nova_Doom_Doom_Legendary",1)

製作規範:金色狠婆娘 Game.AddToInventory("Items.Recipe_Preset_Nue_Jackie_Legendary",1)

製作規範:死亡和稅收 Game.AddToInventory("Items.Recipe_Preset_Nue_Maiko_Legendary",1)

製作規範:麗茲 Game.AddToInventory("Items.Recipe_Preset_Omaha_Suzie_Legendary",1)

製作規範:大赦 Game.AddToInventory("Items.Recipe_Preset_Overture_Cassidy_Legendary",1)

製作規範:大天使 Game.AddToInventory("Items.Recipe_Preset_Overture_Kerry_Legendary",1)

製作規範:真探 Game.AddToInventory("Items.Recipe_Preset_Overture_River_Legendary",1)

製作規範:獵頭 Game.AddToInventory("Items.Recipe_Preset_Punk_Knife_Iconic_Legendary",1)

製作規範:芬裡爾 Game.AddToInventory("Items.Recipe_Preset_Saratoga_Maelstrom_Legendary",1)

製作規範:力大磚飛 Game.AddToInventory("Items.Recipe_Preset_Saratoga_Raffen_Legendary",1)

製作規範:分則能成 Game.AddToInventory("Items.Recipe_Preset_Sidewinder_Divided_Legendary",1)

製作規範:血腥瑪利亞 Game.AddToInventory("Items.Recipe_Preset_Tactician_Dino_Legendary",1)

製作規範:源二郎 Game.AddToInventory("Items.Recipe_Preset_Yukimura_Kiji_Legendary",1)

製作規範:八星銃 Game.AddToInventory("Items.Recipe_Preset_Zhuo_Eight_Star",1)

製作規範:殺戮 Game.AddToInventory("Items.LegendaryCarnageRecipe",1)

製作規範:A-22B 超式 Game.AddToInventory("Items.LegendaryChaoRecipe",1)

製作規範:SPT32 冰爆 Game.AddToInventory("Items.LegendaryGradRecipe",1)

製作規範:JKE-X2 謙信 Game.AddToInventory("Items.LegendaryKenshinRecipe",1)

製作規範:HJSH-18 正宗 Game.AddToInventory("Items.LegendaryMasamuneRecipe",1)

製作規範:前奏 Game.AddToInventory("Items.LegendaryOvertureRecipe",1)

製作規範:DB-4 鐵棍 Game.AddToInventory("Items.LegendaryPalicaRecipe",1)

製作規範:DS1 脈衝 Game.AddToInventory("Items.LegendaryPulsarRecipe",1)

製作規範:D5 響尾蛇 Game.AddToInventory("Items.LegendarySidewinderRecipe",1)

製作規範:SOR-22 Game.AddToInventory("Items.LegendarySor22Recipe",1)

製作規範:M2038 戰術家 Game.AddToInventory("Items.LegendaryTacticianRecipe",1)

製作規範:HJKE-11 幸村 Game.AddToInventory("Items.LegendaryYukimuraRecipe",1)

製作規範:魔爪 Game.AddToInventory("Items.LegendaryFangedAxeRecipe", 1)

製作規範:要人命 Game.AddToInventory("Items.LegendaryChainswordRecipe", 1)

製作規範:剃刀 Game.AddToInventory("Items.LegendaryMacheteBorgRecipe", 1)

製作規範:朋克刀 Game.AddToInventory("Items.LegendaryPunkKnifeRecipe", 1)

製作規範:神經毒素小刀 Game.AddToInventory("Items.LegendaryNeurotoxinKnifeRecipe", 1)

製作規範:河童 Game.AddToInventory("Items.LegendaryKappaRecipe", 1)

製作規範:線香 Game.AddToInventory("Items.LegendarySenkohRecipe", 1)

製作規範:MA70 Game.AddToInventory("Items.LegendaryMA70Recipe", 1)

製作規範:vst-37炙土 Game.AddToInventory("Items.LegendaryPozharRecipe", 1)

製作規範:九尾 Game.AddToInventory("Items.LegendaryKyubiRecipe", 1)

製作規範:SOR-22 Game.AddToInventory("Items.LegendarySor22Recipe",1)

製作規範:SPT32 冰爆 Game.AddToInventory("Items.LegendaryGradRecipe",1)

製作規範:M-179E 阿喀琉斯 Game.AddToInventory("Items.LegendaryAchillesRecipe",1)

製作規範:M-251S 阿賈克斯 Game.AddToInventory("Items.LegendaryAjaxRecipe",1)

製作規範:阿修羅 Game.AddToInventory("Items.LegendaryAshuraRecipe",1)

製作規範:棒球棒 Game.AddToInventory("Items.LegendaryBatRecipe",1)

製作規範:電警棍ALPHA Game.AddToInventory("Items.LegendaryBatonAlphaRecipe",1)

製作規範:電警棍BETA Game.AddToInventory("Items.LegendaryBatonBetaRecipe",1)

製作規範:電警棍GAMMA Game.AddToInventory("Items.LegendaryBatonGammaRecipe",1)

製作規範:廚刀 Game.AddToInventory("Items.LegendaryButchersKnifeRecipe",1)

製作規範:D5-銅斑蛇 Game.AddToInventory("Items.LegendaryCopperheadRecipe",1)

製作規範:D5-銅斑蛇 Game.AddToInventory("Items.Recipe_Legendary_Copperhead_Genesis",1)

製作規範:撬棍 Game.AddToInventory("Items.LegendaryCrowbarRecipe",1)

製作規範:碾碎者 Game.AddToInventory("Items.LegendaryCrusherRecipe",1)

製作規範:防禦者 Game.AddToInventory("Items.LegendaryDefenderRecipe",1)

製作規範:HA-4硬骨頭 Game.AddToInventory("Items.LegendaryGritRecipe",1)

製作規範:斷頭台 Game.AddToInventory("Items.LegendaryGuillotineRecipe",1)

製作規範:錘子 Game.AddToInventory("Items.LegendaryHammerRecipe",1)

製作規範:金棒 Game.AddToInventory("Items.LegendaryKanaboRecipe",1)

製作規範:武士刀 Game.AddToInventory("Items.LegendaryKatanaMilitaryRecipe",1)

製作規範:武士刀 Game.AddToInventory("Items.LegendaryKatanaRecipe",1)

製作規範:小刀 Game.AddToInventory("Items.LegendaryKnifeRecipe",1)

製作規範:反曲刀 Game.AddToInventory("Items.LegendaryKukriRecipe",1)

製作規範:M-10AF萊剋星頓 Game.AddToInventory("Items.LegendaryLexingtonRecipe",1)

製作規範:自由 Game.AddToInventory("Items.LegendaryLibertyRecipe",1)

製作規範:快刀 Game.AddToInventory("Items.LegendaryMacheteBorgRecipe",1)

製作規範:彎刀 Game.AddToInventory("Items.LegendaryMacheteRecipe",1)

製作規範:暴風雪 Game.AddToInventory("Items.LegendaryMetelRecipe",1)

製作規範:鵺 Game.AddToInventory("Items.LegendaryNueRecipe",1)

製作規範:M-76e奧馬哈 Game.AddToInventory("Items.LegendaryOmahaRecipe",1)

製作規範:撬胎棒 Game.AddToInventory("Items.LegendaryPipeWrenchRecipe",1)

製作規範:M221薩拉托加 Game.AddToInventory("Items.LegendarySaratogaRecipe",1)

製作規範:懷劍 Game.AddToInventory("Items.LegendaryTantoRecipe",1)

製作規範:DB-2手鋸 Game.AddToInventory("Items.LegendaryTesteraRecipe",1)

製作規範:軍用科技帝康 Game.AddToInventory("Items.LegendaryTiconRecipe",1)

製作規範:撬胎棒 Game.AddToInventory("Items.LegendaryTireIronRecipe",1)

製作規範:戰斧 Game.AddToInventory("Items.LegendaryTomahawkRecipe",1)

製作規範:DA8本影 Game.AddToInventory("Items.LegendaryUmbraRecipe",1)

製作規範:統一 Game.AddToInventory("Items.LegendaryUnityRecipe",1)

製作規範:守護 Game.AddToInventory("Items.LegendaryWardenRecipe",1)

製作規範:RT-46風暴 Game.AddToInventory("Items.Recipe_Legendary_Burya_Comrade",1)

製作規範:RT-46風暴 Game.AddToInventory("Items.LegendaryBuryaRecipe",1)

製作規範:鋼管 Game.AddToInventory("Items.LegendaryIronPipeRecipe",1)

製作規範:G-58 典式 Game.AddToInventory("Items.LegendaryDianRecipe",1)

製作規範:DB-4 針式導彈Game.AddToInventory("Items.LegendaryIglaRecipe",1)

製作規範:貓又 Game.AddToInventory("Items.LegendaryNekomataRecipe",1)

製作規範:貓又 Game.AddToInventory("Items.Recipe_Legendary_Nekomata_Breakthrough",1)

製作規範:DR5 新星 Game.AddToInventory("Items.LegendaryNovaRecipe",1)

製作規範:DR12 類星體 Game.AddToInventory("Items.LegendaryQuasarRecipe",1)

製作規範:M2038 戰術家 Game.AddToInventory("Items.LegendaryTacticianRecipe",1)

製作規範:HJKE-11 幸村 Game.AddToInventory("Items.LegendaryYukimuraRecipe",1)

製作規範:L-69 卓式 Game.AddToInventory("Items.Recipe_Legendary_Zhuo_Eight_Star",1)

製作規範:L-69 卓式 Game.AddToInventory("Items.LegendaryZhuoRecipe",1)

製作規範:DB-2 薩達拉 Game.AddToInventory("Items.LegendarySataraRecipe",1)

製作規範:DB-4芒刃 Game.AddToInventory("Items.LegendaryPalicaRecipe",1)

製作規範:TKI-20 信玄 Game.AddToInventory("Items.LegendaryShingenRecipe",1)

製作規範:傾力治療5型 Game.AddToInventory("Items.RecipeFirstAidWhiffV2",1)

製作規範:複爾康5型 Game.AddToInventory("Items.RecipeBonesMcCoy70V2",1)

製作規範:好樣的生物危害手雷 Game.AddToInventory("Items.RecipeGrenadeBiohazardLegendary",1)

製作規範:電磁脈衝手雷 Game.AddToInventory("Items.RecipeGrenadeEMPLegendary",1)

製作規範:X-22閃光彈 Game.AddToInventory("Items.RecipeGrenadeFlashLegendary",1)

製作規範:F-7GX破片手雷 Game.AddToInventory("Items.RecipeGrenadeFragHoming",1)

製作規範:焦土燃燒手雷 Game.AddToInventory("Items.RecipeGrenadeIncendiaryLegendary",1)

製作規範:偵察手雷 Game.AddToInventory("Items.RecipeGrenadeReconLegendary",1)

製作規範:煙霧彈 Game.AddToInventory("Items.RecipeGrenadeSmokeLegendary",1)

製作規範:奧佐布的鼻子 Game.AddToInventory("Items.RecipeGrenadeOzobsNose",1)

製作規範:強尼的飛行眼鏡 Game.AddToInventory("Items.Recipe_Q005_Johnny_Glasses_Legendary",1)

製作規範:強尼的長褲 Game.AddToInventory("Items.Recipe_Q005_Johnny_Pants_Legendary",1)

製作規範:強尼的背心 Game.AddToInventory("Items.Recipe_Q005_Johnny_Shirt_Legendary",1)

製作規範:強尼的鞋子 Game.AddToInventory("Items.Recipe_Q005_Johnny_Shoes_Legendary",1)

製作規範:強尼的武士樂隊夾克 Game.AddToInventory("Items.Recipe_SQ031_Samurai_Jacket_Legendary",1)


來源:遊俠網

廣告

廣告

遊戲資訊

電馭叛客2077 (Cyberpunk 2077)

類別: 動作
平台: PC, PS4, PS5, XboxONE, XboxSeriesX, Stadia
開發: CD Projekt RED
發行: CD Projekt RED
上市: 2020年12月10日

《電馭叛客2077》是一款由《巫師》系列開發商CD Projekt開發並於2020年12月10日發行的動作角色扮演遊戲。本作採用了桌上遊戲《電馭叛客2020》的世界觀與規則設計,背景為2077年美國加利福尼亞州的「賽博龐克」風格反烏托邦式城市「夜城」,玩家在這一開放世界中扮演名為「V」的僱傭兵。遊戲定位為一款成人RPG,故事設定在未來科技極度發達的腐敗世界中,構建在筆和紙系統的基礎上,兼有沙盤元素及RPG機制。本作由CD Projekt RED聯合《電馭叛客》筆紙系統(Cyberpunk Pen & Paper system)作者Mike Pondsmith共同開發。

更多 電馭叛客2077 攻略|新聞

廣告
藍圖程式碼列表 https://gamemad.com/guide/347928 創建藍圖 NewID = "把物品ID替換到引號內"; CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); CB = CS:GetPlayerCraftBook(); if TweakDB:GetRecord(NewID) then recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(NewID..".displayName")); if TDB.GetItemRecipeRecord(NewID) then print(" \n\tAttempt to add a recipe : "..recName.." \n\tYou need to set an ITEM ID, not a RECIPE ID.\n ") else if CB:KnowsRecipe(NewID) then print(' \n\t Recipe already present, no need to add : "'..NewID..'" - '..recName..' \n ') else CB:AddRecipe(NewID) print(' \n\t Recipe ADDED : "'..NewID..'" - '..recName..' \n ') end end else print(' \n\t "'..NewID..'" -> NOT VALID, you need a valid ID. \n ') end 刪除特定藍圖 Recipe = "把物品ID替換到引號內"; function removeRecipe() local CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); local CB = CS:GetPlayerCraftBook(); local DATA = {'gamedataConsumableItem_Record', 'gamedataItem_Record', 'gamedataItemRecipe_Record', 'gamedataWeaponItem_Record', 'gamedataClothing_Record'}; if string.find(Recipe, '\t'..tempQua..' - '..recordName) print(' \n\tJUST TO BE CLEAR, these "unknown" recipes are not actually removed, just hidden in the crafting menu.\n\tIf the command is repeated the recipe will still be found, even though it is already hidden in the menu.\n ') else print(' \n\tTHE SET ID WAS FOUND AS VALID, BUT IT IS NOT PRESENT IN THE KNOWN RECIPES ( nothing to remove ).\n ') end end break end end end if not unknownID_Valid then print(' \n\tSET UNKNOWN ID "'..Recipe..'" NOT FOUND.\n\tYOU NEED TO SET THE ID PROPERLY ( Ex. "" ) AND YOU MUST BE ABLE TO FIND IT IN CET TweakDB EDITOR.\n ') end unknownID_Valid = nil; else if TweakDB:GetRecord(Recipe) then if CB:KnowsRecipe(Recipe) then local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(Recipe..'.displayName')); CB:HideRecipe(Recipe, true) print(' \n\t. . . REMOVING\t->\t"'..Recipe..'" - '..recName..'\n ') else print(' \n\t'..Recipe..'\t->\tNOT FOUND IN THE KNOWN RECIPES.\n ') end else print(' \n\t"'..Recipe..'"\t->\tID NOT VALID.\n\tYOU NEED TO SET A VALID ITEM ID.\n ') end end end removeRecipe() 刪除所有藍圖 CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); CB = CS:GetPlayerCraftBook(); CSCI = CS:GetPlayerCraftableItems(); Recipes = CB:GetCraftableItems(); for i, recipe in ipairs(Recipes) do local TweakID = TDBID.ToStringDEBUG(recipe:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(recipe:GetID()..".displayName")); if CB:KnowsRecipe(TweakID) then if string.find(TweakID, "Material") or string.find(TweakID, "Ammo") or string.find(TweakID, "Items.w_") then print('\t- Default recipe found, skipping... "'..TweakID..'" ( '..recName..' )') else CB:HideRecipe(TweakID, true) print('\t- Recipe REMOVED : "'..TweakID..'" ( '..recName..' )') end end end for i, id in next, CSCI do local TweakID = TDBID.ToStringDEBUG(id:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(id:GetID()..".displayName")); if string.find(TweakID, " 所有已知藍圖 function getRecipesIDs() local CS = Game.GetScriptableSystemsContainer():Get('CraftingSystem'); local CB = CS:GetPlayerCraftBook(); local PCI = CS:GetPlayerCraftableItems(); print(' \n') for i, recipe in next, PCI do local TweakID = TDBID.ToStringDEBUG(recipe:GetID()); local recName = Game.GetLocalizedTextByKey(TDB.GetLocKey(recipe:GetID()..'.displayName')); local recQua = recipe:Quality():Type().value; if string.find(TweakID, " 所有衣服藍圖 for i, v in next, { "UncommonVestRecipe", "RareFormalShoesRecipe", "LegendaryTechRecipe", "EpicLooseShirtRecipe", "UncommonVisorRecipe", "RareFormalPantsRecipe", "EpicShortsRecipe", "EpicHatRecipe", "LegendaryFormalSkirtRecipe", "RareShortsRecipe", "UncommonFormalShoesRecipe", "LegendaryShortsRecipe", "LegendaryShirtRecipe", "UncommonCapRecipe", "LegendaryFormalShoesRecipe", "EpicFormalJacketRecipe", "LegendaryTShirtRecipe", "UncommonBalaclavaRecipe", "LegendaryJacketRecipe", "RareJacketRecipe", "LegendaryCapRecipe", "UncommonHelmetRecipe", "UncommonPantsRecipe", "RareFormalJacketRecipe", "LegendaryCasualShoesRecipe", "Recipe_GOG_Galaxy_TShirt_Epic", "Recipe_GOG_Galaxy_TShirt_Legendary", "EpicPantsRecipe", "RareBootsRecipe", "LegendaryPantsRecipe", "EpicGlassesRecipe", "UncommonFormalSkirtRecipe", "EpicScarfRecipe", "EpicCasualShoesRecipe", "UncommonDressRecipe", "UncommonShirtLooseRecipe", "EpicFormalSkirtRecipe", "UncommonJacketRecipe", "Recipe_Q005_Johnny_Glasses_Epic", "Recipe_Q005_Johnny_Glasses_Legendary", "Recipe_Q005_Johnny_Pants_Epic", "Recipe_Q005_Johnny_Pants_Legendary", "Recipe_Q005_Johnny_Shoes_Epic", "Recipe_Q005_Johnny_Shoes_Legendary", "Recipe_Q005_Johnny_Shirt_Epic", "Recipe_Q005_Johnny_Shirt_Legendary", "EpicHelmetRecipe", "LegendaryJumpsuitRecipe", "UncommonTechRecipe", "EpicMaskRecipe", "EpicFormalShoesRecipe", "LegendaryBootsRecipe", "RareCoatRecipe", "LegendaryHatRecipe", "UncommonMaskRecipe", "EpicUndershirtRecipe", "EpicFormalShirtRecipe", "EpicBootsRecipe", "RareVestRecipe", "RareShirtRecipe", "RareTShirtRecipe", "LegendaryTightJumpsuitRecipe", "UncommonFormalShirtRecipe", "UncommonBootsRecipe", "Recipe_SQ031_Samurai_Jacket_Epic", "Recipe_SQ031_Samurai_Jacket_Legendary", "RareCasualShoesRecipe", "LegendaryScarfRecipe", "LegendaryVestRecipe", "UncommonShirtRecipe", "UncommonUndershirtRecipe", "RareHelmetRecipe", "UncommonFormalPantsRecipe", "RareUndershirtRecipe", "EpicCapRecipe", "EpicCoatRecipe", "RareGlassesRecipe", "LegendaryVisorRecipe", "UncommonCasualShoesRecipe", "LegendaryGlassesRecipe", "RareScarfRecipe", "RareMaskRecipe", "RareTechRecipe", "EpicTShirtRecipe", "LegendaryFormalPantsRecipe", "RareHatRecipe", "RarePantsRecipe", "Recipe_GOG_DLC_Jacket_Epic", "Recipe_GOG_DLC_Jacket_Legendary", "Recipe_GOG_DLC_TShirt_Epic", "Recipe_GOG_DLC_TShirt_Legendary", "EpicVisorRecipe", "Recipe_GOG_Galaxy_TShirt", "Recipe_GOG_DLC_TShirt", "Recipe_Jacket_19_basic_04_DLC_Epic", "Recipe_Jacket_19_basic_04_DLC_Legendary", "Recipe_Jacket_20_basic_01_DLC_Epic", "Recipe_Jacket_20_basic_01_DLC_Legendary", "Recipe_Jacket_19_basic_04_DLC", "Recipe_Jacket_20_basic_01_DLC", "Recipe_GOG_DLC_Jacket" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL CLOTHES RECIPES") 所有手雷藍圖 for i, v in next, { "RecipeGrenadeIncendiaryRegular", "RecipeGrenadeIncendiarySticky", "RecipeGrenadeIncendiaryHoming", "RecipeGrenadeEMPRegular", "RecipeGrenadeEMPSticky", "RecipeGrenadeEMPHoming", "RecipeGrenadeFragRegular", "RecipeGrenadeFragSticky", "RecipeGrenadeFragHoming", "RecipeGrenadeCuttingRegular", "RecipeGrenadeBiohazardRegular", "RecipeGrenadeBiohazardHoming", "RecipeGrenadeOzobsNose", "RecipeGrenadeReconRegular", "RecipeGrenadeReconSticky", "RecipeGrenadeFlashRegular", "RecipeGrenadeFlashHoming", "RecipeGrenadeIncendiaryRare", "RecipeGrenadeEMPRare", "RecipeGrenadeReconRare", "RecipeGrenadeSmokeRare", "RecipeGrenadeEMPUncommon", "RecipeGrenadeFragUncommon", "RecipeGrenadeSmokeRegular", "RecipeGrenadeFlashUncommon", "RecipeGrenadeFragEpic", "RecipeGrenadeSmokeEpic", "RecipeGrenadeFlashEpic", "RecipeGrenadeIncendiaryLegendary", "RecipeGrenadeEMPLegendary", "RecipeGrenadeBiohazardLegendary", "RecipeGrenadeReconLegendary", "RecipeGrenadeSmokeLegendary", "RecipeGrenadeFlashLegendary" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL GRENADES RECIPES") 所有插件藍圖 for i, v in next, { "Recipe_BerserkFragment1", "Recipe_BerserkFragment2", "Recipe_BerserkFragment3", "Recipe_BerserkFragment4", "Recipe_BerserkFragment5", "Recipe_BerserkFragment6", "Recipe_BerserkFragment7", "Recipe_BerserkFragment8", "Recipe_AnimalsBerserkFragment1", "Recipe_ArasakaSandevistanFragment1", "Recipe_ArmsCyberwareSharedFragment1", "Recipe_ArmsCyberwareSharedFragment2", "Recipe_ArmsCyberwareSharedFragment3", "Recipe_ArmsCyberwareSharedFragment4", "Recipe_ChemicalDamageCable", "Recipe_ChemicalDamageEdge", "Recipe_ChemicalDamageKnuckles", "Recipe_ChemicalDamageRound", "Recipe_ElectricDamageCable", "Recipe_ElectricDamageEdge", "Recipe_ElectricDamageKnuckles", "Recipe_ElectricDamageRound", "Recipe_ExplosiveDamageRound", "Recipe_FastRotor", "Recipe_HighChargedBattery", "Recipe_HighChargedWiresBattery", "Recipe_KiroshiOpticsFragment1", "Recipe_KiroshiOpticsFragment2", "Recipe_KiroshiOpticsFragment3", "Recipe_KiroshiOpticsFragment4", "Recipe_KiroshiOpticsFragment5", "Recipe_LowChargedBattery", "Recipe_LowChargedWiresBattery", "Recipe_MediumChargedBattery", "Recipe_MediumChargedWiresBattery", "Recipe_MetalPlating", "Recipe_NeoplasticPlating", "Recipe_PhysicalDamageCable", "Recipe_PhysicalDamageEdge", "Recipe_PhysicalDamageKnuckles", "Recipe_SandevistanFragment1", "Recipe_SandevistanFragment2", "Recipe_SandevistanFragment3", "Recipe_SandevistanFragment4", "Recipe_SlowRotor", "Recipe_ThermalDamageCable", "Recipe_ThermalDamageEdge", "Recipe_ThermalDamageKnuckles", "Recipe_ThermalDamageRound", "Recipe_TitaniumPlating", "Recipe_TygerClawsSandevistanFragment1", "Recipe_ValentinosSandevistanFragment1", "ARSMGLMGMod1_Rare_Recipe", "ARSMGLMGMod3_Rare_Recipe", "ARSMGLMGMod2_Rare_Recipe", "BlaDemod1_Rare_Recipe", "BlaDemod3_Rare_Recipe", "BluntMod2_Rare_Recipe", "BluntMod1_Rare_Recipe", "MeleeMod1_Rare_Recipe", "MeleeMod2_Rare_Recipe", "MeleeMod3_Rare_Recipe", "HGMod3_Rare_Recipe", "HGMod1_Rare_Recipe", "HGMod2_Rare_Recipe", "PowerMod3_Rare_Recipe", "PowerMod1_Rare_Recipe", "PowerMod2_Rare_Recipe", "RangedMod3_Rare_Recipe", "RangedMod2_Rare_Recipe", "ShotgunMod3_Rare_Recipe", "ShotgunMod1_Rare_Recipe", "SmartMod2_Rare_Recipe", "SmartMod3_Rare_Recipe", "PRSRMod3_Rare_Recipe", "PRSRMod2_Rare_Recipe", "PRSRMod1_Rare_Recipe", "TechMod2_Rare_Recipe", "TechMod1_Rare_Recipe", "TechMod3_Rare_Recipe", "ThrowMod1_Rare_Recipe", "ThrowMod3_Rare_Recipe", "GenericMod1_Rare_Recipe", "ARSMGLMGMod1_Uncommon_Recipe", "ARSMGLMGMod3_Uncommon_Recipe", "ARSMGLMGMod2_Uncommon_Recipe", "BlaDemod1_Uncommon_Recipe", "BlaDemod3_Uncommon_Recipe", "BluntMod2_Uncommon_Recipe", "BluntMod1_Uncommon_Recipe", "MeleeMod1_Uncommon_Recipe", "MeleeMod2_Uncommon_Recipe", "MeleeMod3_Uncommon_Recipe", "HGMod3_Uncommon_Recipe", "HGMod1_Uncommon_Recipe", "HGMod2_Uncommon_Recipe", "PowerMod3_Uncommon_Recipe_1", "PowerMod1_Uncommon_Recipe", "RangedMod3_Uncommon_Recipe", "RangedMod2_Uncommon_Recipe", "ShotgunMod3_Uncommon_Recipe", "ShotgunMod1_Uncommon_Recipe", "SmartMod2_Uncommon_Recipe", "SmartMod3_Uncommon_Recipe", "PRSRMod3_Uncommon_Recipe", "PRSRMod2_Uncommon_Recipe", "PRSRMod1_Uncommon_Recipe", "TechMod2_Uncommon_Recipe", "TechMod1_Uncommon_Recipe", "TechMod3_Uncommon_Recipe", "ThrowMod1_Uncommon_Recipe", "ThrowMod3_Uncommon_Recipe", "GenericMod1_Uncommon_Recipe", "ARSMGLMGMod1_Epic_Recipe", "ARSMGLMGMod3_Epic_Recipe", "ARSMGLMGMod2_Epic_Recipe", "BlaDemod1_Epic_Recipe", "BlaDemod3_Epic_Recipe", "BluntMod2_Epic_Recipe", "BluntMod1_Epic_Recipe", "MeleeMod1_Epic_Recipe", "MeleeMod2_Epic_Recipe", "MeleeMod3_Epic_Recipe", "HGMod3_Epic_Recipe", "HGMod1_Epic_Recipe", "HGMod2_Epic_Recipe", "PowerMod3_Epic_Recipe", "PowerMod1_Epic_Recipe", "PowerMod2_Epic_Recipe", "RangedMod3_Epic_Recipe", "RangedMod2_Epic_Recipe", "ShotgunMod3_Epic_Recipe", "ShotgunMod1_Epic_Recipe", "SmartMod2_Epic_Recipe", "SmartMod3_Epic_Recipe", "PRSRMod3_Epic_Recipe", "PRSRMod2_Epic_Recipe", "PRSRMod1_Epic_Recipe", "TechMod2_Epic_Recipe", "TechMod1_Epic_Recipe", "TechMod3_Epic_Recipe", "ThrowMod1_Epic_Recipe", "ThrowMod3_Epic_Recipe", "ThrowMod2_Epic_Recipe", "GenericMod1_Epic_Recipe", "ARSMGLMGMod1_Legendary_Recipe", "ARSMGLMGMod3_Legendary_Recipe", "ARSMGLMGMod2_Legendary_Recipe", "BlaDemod1_Legendary_Recipe", "BlaDemod3_Legendary_Recipe", "BluntMod3_Legendary_Recipe", "BluntMod2_Legendary_Recipe", "BluntMod1_Legendary_Recipe", "MeleeMod1_Legendary_Recipe", "MeleeMod2_Legendary_Recipe", "ChimeraMeleeMod_Recipe", "MeleeMod3_Legendary_Recipe", "HGMod3_Legendary_Recipe", "HGMod1_Legendary_Recipe", "HGMod2_Legendary_Recipe", "PowerMod3_Legendary_Recipe", "ChimeraPowerMod_Recipe", "PowerMod1_Legendary_Recipe", "PowerMod2_Legendary_Recipe", "RangedMod1_Legendary_Recipe", "RangedMod3_Legendary_Recipe", "RangedMod2_Legendary_Recipe", "ShotgunMod3_Legendary_Recipe", "ShotgunMod1_Legendary_Recipe", "SmartMod1_Legendary_Recipe", "SmartMod2_Legendary_Recipe", "ChimeraSmartMod_Recipe", "SmartMod3_Legendary_Recipe", "PRSRMod3_Legendary_Recipe", "PRSRMod2_Legendary_Recipe", "PRSRMod1_Legendary_Recipe", "TechMod2_Legendary_Recipe", "TechMod1_Legendary_Recipe", "TechMod3_Legendary_Recipe", "ChimeraTechMod_Recipe", "ThrowMod1_Legendary_Recipe", "ThrowMod3_Legendary_Recipe", "ThrowMod2_Legendary_Recipe", "GenericMod1_Legendary_Recipe" } do Game.AddToInventory("Items."..v, 1) end print(" - Added: ALL MODS RECIPES") 所有快速破解藍圖 for i, v in next, { "Recipe_ContagionProgram", "Recipe_ContagionLvl2Program", "Recipe_ContagionLvl3Program", "Recipe_ContagionLvl4Program", "Recipe_LocomotionMalfunctionProgram", "Recipe_LocomotionMalfunctionLvl2Program", "Recipe_LocomotionMalfunctionLvl3Program", "Recipe_LocomotionMalfunctionLvl4Program", "Recipe_MadnessLvl3Program", "Recipe_MadnessLvl4Program", "Recipe_DisableCyberwareProgram", "Recipe_DisableCyberwareLvl2Program", "Recipe_DisableCyberwareLvl3Program", "Recipe_GrenadeExplodeLvl3Program", "Recipe_GrenadeExplodeLvl4Program", "Recipe_MemoryWipeLvl2Program", "Recipe_MemoryWipeLvl3Program", "Recipe_OverheatProgram", "Recipe_OverheatLvl2Program", "Recipe_OverheatLvl3Program", "Recipe_OverheatLvl4Program", "Recipe_PingProgram", "Recipe_PingLvl2Program", "Recipe_PingLvl3Program", "Recipe_PingLvl4Program", "Recipe_BlindLvl2Program", "Recipe_BlindLvl3Program", "Recipe_BlindLvl4Program", "Recipe_BlindProgram", "Recipe_CommsCallInProgram", "Recipe_CommsCallInLvl3Program", "Recipe_EMPOverloadProgram", "Recipe_EMPOverloadLvl2Program", "Recipe_EMPOverloadLvl3Program", "Recipe_EMPOverloadLvl4Program", "Recipe_CommsNoiseProgram", "Recipe_CommsNoiseLvl2Program", "Recipe_CommsNoiseLvl3Program", "Recipe_CommsNoiseLvl4Program", "Recipe_SuicideLvl3Program", "Recipe_SuicideLvl4Program", "Recipe_BrainMeltLvl2Program", "Recipe_BrainMeltLvl3Program", "Recipe_BrainMeltLvl4Program", "Recipe_SystemCollapseLvl3Program", "Recipe_SystemCollapseLvl4Program", "Recipe_WeaponMalfunctionProgram", "Recipe_WeaponMalfunctionLvl2Program", "Recipe_WeaponMalfunctionLvl3Program", "Recipe_WeaponMalfunctionLvl4Program", "Recipe_WhistleProgram", "Recipe_WhistleLvl2Program", "Recipe_WhistleLvl3Program", "Recipe_WhistleLvl0Program", "Recipe_CommsCallInLvl2Program", "Recipe_WhistleLvl1Program", "Recipe_OverheatLvl1Program", "Recipe_BlindLvl1Program", "Recipe_CommsCallInLvl1Program", "Recipe_EMPOverloadLvl1Program", "Recipe_WhistleLvl4Program", "Recipe_WhistleLvl4PlusPlusProgram", "Recipe_ContagionLvl4PlusPlusProgram", "Recipe_LocomotionMalfunctionLvl4PlusPlusProgram", "Recipe_MadnessLvl4PlusPlusProgram", "Recipe_DisableCyberwareLvl4Program", "Recipe_DisableCyberwareLvl4PlusPlusProgram", "Recipe_GrenadeExplodeLvl4PlusPlusProgram", "Recipe_MemoryWipeLvl4Program", "Recipe_MemoryWipeLvl4PlusPlusProgram", "Recipe_OverheatLvl4PlusPlusProgram", "Recipe_PingLvl4PlusPlusProgram", "Recipe_BlindLvl4PlusPlusProgram", "Recipe_CommsCallInLvl4Program", "Recipe_CommsCallInLvl4PlusPlusProgram", "Recipe_EMPOverloadLvl4PlusPlusProgram", "Recipe_CommsNoiseLvl4PlusPlusProgram", "Recipe_SuicideLvl4PlusPlusProgram", "Recipe_BrainMeltLvl4PlusPlusProgram", "Recipe_SystemCollapseLvl4PlusPlusProgram", "Recipe_WeaponMalfunctionLvl4PlusPlusProgram" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL QUICKHACKS RECIPES") 所有武器藍圖 for i, v in next, { "CommonKatanaMilitaryRecipe", "UncommonKatanaMilitaryRecipe", "RareKatanaMilitaryRecipe", "EpicKatanaMilitaryRecipe", "LegendaryKatanaMilitaryRecipe", "CommonAchillesRecipe", "CommonAjaxRecipe", "CommonAshuraRecipe", "CommonBatonAlphaRecipe", "CommonBatonBetaRecipe", "CommonBatonGammaRecipe", "CommonBatRecipe", "CommonBuryaRecipe", "CommonButchersKnifeRecipe", "CommonCarnageRecipe", "CommonChaoRecipe", "CommonChefsKnifeRecipe", "CommonCopperheadRecipe", "CommonCrowbarRecipe", "CommonCrusherRecipe", "CommonDefenderRecipe", "CommonDianRecipe", "CommonGradRecipe", "CommonGuillotineRecipe", "CommonHammerRecipe", "CommonIglaRecipe", "CommonIronPipeRecipe", "CommonKanaboRecipe", "CommonKatanaRecipe", "CommonKenshinRecipe", "CommonKnifeRecipe", "CommonKukriRecipe", "CommonLexingtonRecipe", "CommonLibertyRecipe", "CommonMacheteRecipe", "CommonMasamuneRecipe", "CommonNekomataRecipe", "CommonNovaRecipe", "CommonNueRecipe", "CommonOmahaRecipe", "CommonOvertureRecipe", "CommonPalicaRecipe", "CommonPipeWrenchRecipe", "CommonPulsarRecipe", "CommonQuasarRecipe", "CommonSaratogaRecipe", "CommonSataraRecipe", "CommonShingenRecipe", "CommonSidewinderRecipe", "CommonSor22Recipe", "CommonTacticianRecipe", "CommonTantoRecipe", "CommonTesteraRecipe", "CommonTireIronRecipe", "CommonTomahawkRecipe", "CommonUmbraRecipe", "CommonUnityRecipe", "CommonYukimuraRecipe", "CommonZhuoRecipe", "EpicAchillesRecipe", "EpicAjaxRecipe", "EpicAshuraRecipe", "EpicBatonAlphaRecipe", "EpicBatonBetaRecipe", "EpicBatonGammaRecipe", "EpicBatRecipe", "EpicBuryaRecipe", "EpicButchersKnifeRecipe", "EpicCarnageRecipe", "EpicChaoRecipe", "EpicChefsKnifeRecipe", "EpicCopperheadRecipe", "EpicCrowbarRecipe", "EpicCrusherRecipe", "EpicDefenderRecipe", "EpicDianRecipe", "EpicGradRecipe", "EpicGuillotineRecipe", "EpicHammerRecipe", "EpicIglaRecipe", "EpicIronPipeRecipe", "EpicKanaboRecipe", "EpicKatanaRecipe", "EpicKenshinRecipe", "EpicKnifeRecipe", "EpicKukriRecipe", "EpicLexingtonRecipe", "EpicLibertyRecipe", "EpicMacheteRecipe", "EpicMasamuneRecipe", "EpicNekomataRecipe", "EpicNovaRecipe", "EpicNueRecipe", "EpicOmahaRecipe", "EpicOvertureRecipe", "EpicPalicaRecipe", "EpicPipeWrenchRecipe", "EpicPipeWrenchRecipe", "EpicPulsarRecipe", "EpicQuasarRecipe", "EpicSaratogaRecipe", "EpicSataraRecipe", "EpicShingenRecipe", "EpicSidewinderRecipe", "EpicSor22Recipe", "EpicTacticianRecipe", "EpicTantoRecipe", "EpicTesteraRecipe", "EpicTireIronRecipe", "EpicTomahawkRecipe", "EpicUmbraRecipe", "EpicUnityRecipe", "EpicYukimuraRecipe", "EpicZhuoRecipe", "LegendaryAchillesRecipe", "LegendaryAjaxRecipe", "LegendaryAshuraRecipe", "LegendaryBatonAlphaRecipe", "LegendaryBatonBetaRecipe", "LegendaryBatonGammaRecipe", "LegendaryBatRecipe", "LegendaryBuryaRecipe", "LegendaryButchersKnifeRecipe", "LegendaryCarnageRecipe", "LegendaryChaoRecipe", "LegendaryChefsKnifeRecipe", "LegendaryCopperheadRecipe", "LegendaryCrowbarRecipe", "LegendaryCrusherRecipe", "LegendaryDefenderRecipe", "LegendaryDianRecipe", "LegendaryGradRecipe", "LegendaryGuillotineRecipe", "LegendaryHammerRecipe", "LegendaryIglaRecipe", "LegendaryIronPipeRecipe", "LegendaryKanaboRecipe", "LegendaryKatanaRecipe", "LegendaryKenshinRecipe", "LegendaryKnifeRecipe", "LegendaryKukriRecipe", "LegendaryLexingtonRecipe", "LegendaryLibertyRecipe", "LegendaryMacheteRecipe", "LegendaryMasamuneRecipe", "LegendaryNekomataRecipe", "LegendaryNovaRecipe", "LegendaryNueRecipe", "LegendaryOmahaRecipe", "LegendaryOvertureRecipe", "LegendaryPalicaRecipe", "LegendaryPipeWrenchRecipe", "LegendaryPulsarRecipe", "LegendaryQuasarRecipe", "LegendarySaratogaRecipe", "LegendarySataraRecipe", "LegendaryShingenRecipe", "LegendarySidewinderRecipe", "LegendarySor22Recipe", "LegendaryTacticianRecipe", "LegendaryTantoRecipe", "LegendaryTesteraRecipe", "LegendaryTireIronRecipe", "LegendaryTomahawkRecipe", "LegendaryUmbraRecipe", "LegendaryUnityRecipe", "LegendaryYukimuraRecipe", "LegendaryZhuoRecipe", "RareAchillesRecipe", "RareAjaxRecipe", "RareAshuraRecipe", "RareBatonAlphaRecipe", "RareBatonBetaRecipe", "RareBatonGammaRecipe", "RareBatRecipe", "RareBuryaRecipe", "RareButchersKnifeRecipe", "RareCarnageRecipe", "RareChaoRecipe", "RareChefsKnifeRecipe", "RareCopperheadRecipe", "RareCrowbarRecipe", "RareCrusherRecipe", "RareDefenderRecipe", "RareDianRecipe", "RareGradRecipe", "RareGuillotineRecipe", "RareHammerRecipe", "RareIglaRecipe", "RareIronPipeRecipe", "RareKanaboRecipe", "RareKatanaRecipe", "RareKenshinRecipe", "RareKnifeRecipe", "RareKukriRecipe", "RareLexingtonRecipe", "RareLibertyRecipe", "RareMacheteRecipe", "RareMasamuneRecipe", "RareNekomataRecipe", "RareNovaRecipe", "RareNueRecipe", "RareOmahaRecipe", "RareOvertureRecipe", "RarePalicaRecipe", "RarePipeWrenchRecipe", "RarePulsarRecipe", "RareQuasarRecipe", "RareSaratogaRecipe", "RareSataraRecipe", "RareShingenRecipe", "RareSidewinderRecipe", "RareSor22Recipe", "RareTacticianRecipe", "RareTantoRecipe", "RareTesteraRecipe", "RareTireIronRecipe", "RareTomahawkRecipe", "RareUmbraRecipe", "RareUnityRecipe", "RareYukimuraRecipe", "RareZhuoRecipe", "Recipe_Preset_Achilles_Nash_Epic", "Recipe_Preset_Achilles_Nash_Legendary", "Recipe_Preset_Ajax_Moron", "Recipe_Preset_Ajax_Moron_Legendary", "Recipe_Preset_Baseball_Bat_Denny_Epic", "Recipe_Preset_Baseball_Bat_Denny_Legendary", "Recipe_Preset_Baton_Tinker_Bell_Epic", "Recipe_Preset_Baton_Tinker_Bell_Legendary", "Recipe_Preset_Burya_Comrade", "Recipe_Preset_Burya_Comrade_Legendary", "Recipe_Preset_Cane_Fingers_Epic", "Recipe_Preset_Cane_Fingers_Legendary", "Recipe_Preset_Carnage_Mox_Epic", "Recipe_Preset_Carnage_Mox_Legendary", "Recipe_Preset_Copperhead_Genesis", "Recipe_Preset_Copperhead_Genesis_Epic", "Recipe_Preset_Copperhead_Genesis_Legendary", "Recipe_Preset_Dian_Yinglong", "Recipe_Preset_Dildo_Stout_Epic", "Recipe_Preset_Dildo_Stout_Legendary", "Recipe_Preset_Grad_Buck_Legendary", "Recipe_Preset_Grad_Panam", "Recipe_Preset_Grad_Panam_Epic", "Recipe_Preset_Grad_Panam_Legendary", "Recipe_Preset_Igla_Sovereign", "Recipe_Preset_Igla_Sovereign_Legendary", "Recipe_Preset_Katana_Cocktail_Epic", "Recipe_Preset_Katana_Cocktail_Legendary", "Recipe_Preset_Katana_GoG_Epic", "Recipe_Preset_Katana_GoG_Legendary", "Recipe_Preset_Katana_Hiromi_Epic", "Recipe_Preset_Katana_Hiromi_Legendary", "Recipe_Preset_Katana_Saburo_Epic", "Recipe_Preset_Katana_Saburo_Legendary", "Recipe_Preset_Katana_Surgeon_Epic", "Recipe_Preset_Katana_Surgeon_Legendary", "Recipe_Preset_Katana_Takemura_Legendary", "Recipe_Preset_Kenshin_Frank_Legendary", "Recipe_Preset_Kenshin_Royce_Epic", "Recipe_Preset_Kenshin_Royce_Legendary", "Recipe_Preset_Knife_Stinger_Epic", "Recipe_Preset_Knife_Stinger_Legendary", "Recipe_Preset_Lexington_Wilson_Epic", "Recipe_Preset_Lexington_Wilson_Legendary", "Recipe_Preset_Lexington_Wilson_Rare", "Recipe_Preset_Liberty_Dex_Epic", "Recipe_Preset_Liberty_Dex_Legendary", "Recipe_Preset_Liberty_Yorinobu_Epic", "Recipe_Preset_Liberty_Yorinobu_Legendary", "Recipe_Preset_Nekomata_Breakthrough", "Recipe_Preset_Nekomata_Breakthrough_Legendary", "Recipe_Preset_Nova_Doom_Doom_Epic", "Recipe_Preset_Nova_Doom_Doom_Legendary", "Recipe_Preset_Nue_Jackie_Epic", "Recipe_Preset_Nue_Jackie_Legendary", "Recipe_Preset_Nue_Maiko_Epic", "Recipe_Preset_Nue_Maiko_Legendary", "Recipe_Preset_Omaha_Suzie_Epic", "Recipe_Preset_Omaha_Suzie_Legendary", "Recipe_Preset_Overture_Cassidy_Legendary", "Recipe_Preset_Overture_Kerry_Epic", "Recipe_Preset_Overture_Kerry_Legendary", "Recipe_Preset_Overture_River_Legendary", "Recipe_Preset_Pulsar_Buzzsaw", "Recipe_Preset_Pulsar_Buzzsaw_Epic", "Recipe_Preset_Pulsar_Buzzsaw_Legendary", "Recipe_Preset_Saratoga_Maelstrom_Epic", "Recipe_Preset_Saratoga_Maelstrom_Legendary", "Recipe_Preset_Saratoga_Raffen_Epic", "Recipe_Preset_Saratoga_Raffen_Legendary", "Recipe_Preset_Sidewinder_Divided_Epic", "Recipe_Preset_Sidewinder_Divided_Legendary", "Recipe_Preset_Tactician_Headsman", "Recipe_Preset_Tactician_Headsman_Legendary", "Recipe_Preset_Yukimura_Kiji_Legendary", "Recipe_Preset_Zhuo_Eight_Star", "UncommonAchillesRecipe", "UncommonAjaxRecipe", "UncommonAshuraRecipe", "UncommonBatonBetaRecipe", "UncommonBatonGammaRecipe", "UncommonBatonRecipe", "UncommonBatRecipe", "UncommonBuryaRecipe", "UncommonButchersKnifeRecipe", "UncommonCarnageRecipe", "UncommonChaoRecipe", "UncommonChefsKnifeRecipe", "UncommonCopperheadRecipe", "UncommonCrowbarRecipe", "UncommonCrusherRecipe", "UncommonDefenderRecipe", "UncommonDianRecipe", "UncommonGradRecipe", "UncommonGuillotineRecipe", "UncommonHammerRecipe", "UncommonIglaRecipe", "UncommonIronPipeRecipe", "UncommonKanaboRecipe", "UncommonKatanaRecipe", "UncommonKenshinRecipe", "UncommonKnifeRecipe", "UncommonKukriRecipe", "UncommonLexingtonRecipe", "UncommonLibertyRecipe", "UncommonMacheteRecipe", "UncommonMasamuneRecipe", "UncommonNekomataRecipe", "UncommonNovaRecipe", "UncommonNueRecipe", "UncommonOmahaRecipe", "UncommonOvertureRecipe", "UncommonPalicaRecipe", "UncommonPipeWrenchRecipe", "UncommonPulsarRecipe", "UncommonQuasarRecipe", "UncommonSaratogaRecipe", "UncommonSataraRecipe", "UncommonShingenRecipe", "UncommonSidewinderRecipe", "UncommonSor22Recipe", "UncommonTacticianRecipe", "UncommonTantoRecipe", "UncommonTesteraRecipe", "UncommonTireIronRecipe", "UncommonTomahawkRecipe", "UncommonUmbraRecipe", "UncommonUnityRecipe", "UncommonYukimuraRecipe", "UncommonZhuoRecipe", "CommonSenkohRecipe", "UncommonSenkohRecipe", "RareSenkohRecipe", "EpicSenkohRecipe", "LegendarySenkohRecipe", "CommonNeurotoxinKnifeRecipe", "UncommonNeurotoxinKnifeRecipe", "RareNeurotoxinKnifeRecipe", "EpicNeurotoxinKnifeRecipe", "LegendaryNeurotoxinKnifeRecipe", "CommonFangedAxeRecipe", "UncommonFangedAxeRecipe", "RareFangedAxeRecipe", "EpicFangedAxeRecipe", "LegendaryFangedAxeRecipe", "CommonChainswordRecipe", "UncommonChainswordRecipe", "RareChainswordRecipe", "EpicChainswordRecipe", "LegendaryChainswordRecipe", "CommonPunkKnifeRecipe", "UncommonPunkKnifeRecipe", "RarePunkKnifeRecipe", "EpicPunkKnifeRecipe", "LegendaryPunkKnifeRecipe", "CommonMA70Recipe", "UncommonMA70Recipe", "RareMA70Recipe", "EpicMA70Recipe", "LegendaryMA70Recipe", "CommonMacheteBorgRecipe", "UncommonMacheteBorgRecipe", "RareMacheteBorgRecipe", "EpicMacheteBorgRecipe", "LegendaryMacheteBorgRecipe", "CommonPozharRecipe", "UncommonPozharRecipe", "RarePozharRecipe", "EpicPozharRecipe", "LegendaryPozharRecipe", "CommonKappaRecipe", "UncommonKappaRecipe", "RareKappaRecipe", "EpicKappaRecipe", "LegendaryKappaRecipe", "CommonKyubiRecipe", "UncommonKyubiRecipe", "RareKyubiRecipe", "EpicKyubiRecipe", "LegendaryKyubiRecipe", "Recipe_Preset_Neurotoxin_Knife_Iconic_Epic", "Recipe_Preset_Neurotoxin_Knife_Iconic_Legendary", "Recipe_Preset_Butchers_Knife_Iconic_Epic", "Recipe_Preset_Butchers_Knife_Iconic_Legendary", "Recipe_Preset_Carnage_Edgerunners_Legendary", "Recipe_Preset_Punk_Knife_Iconic_Epic", "Recipe_Preset_Punk_Knife_Iconic_Legendary", "Recipe_Preset_Kolac_Tiny_Mike_Legendary", "Recipe_Preset_Tactician_Dino_Legendary", "Recipe_Common_Nekomata_Breakthrough", "Recipe_Preset_Liberty_Padre_Legendary", "Recipe_Common_Dian_Yinglong", "CommonWardenRecipe", "Recipe_Common_Pulsar_Buzzsaw", "Recipe_Common_Tactician_Headsman", "Recipe_Common_Zhuo_Eight_Star", "Recipe_Common_Burya_Comrade", "Recipe_Preset_Katana_GoG", "Recipe_Common_Copperhead_Genesis", "CommonTiconRecipe", "Recipe_Common_Igla_Sovereign", "Recipe_Common_Borg4a_HauntedGun", "Recipe_Common_Ajax_Moron", "CommonMetelRecipe", "Recipe_Preset_Katana_Wakako_Legendary", "Recipe_Preset_Borg4a_HauntedGun", "CommonGritRecipe", "Recipe_Rare_Ajax_Moron", "Recipe_Rare_Copperhead_Genesis", "Recipe_Rare_Igla_Sovereign", "RareGritRecipe", "RareTiconRecipe", "Recipe_Rare_Burya_Comrade", "RareMetelRecipe", "Recipe_Rare_Zhuo_Eight_Star", "Recipe_Rare_Tactician_Headsman", "Recipe_Rare_Pulsar_Buzzsaw", "Recipe_Rare_Borg4a_HauntedGun", "RareWardenRecipe", "Recipe_Rare_Dian_Yinglong", "Recipe_Rare_Nekomata_Breakthrough", "Recipe_Uncommon_Ajax_Moron", "Recipe_Uncommon_Copperhead_Genesis", "Recipe_Uncommon_Igla_Sovereign", "UncommonGritRecipe", "UncommonTiconRecipe", "Recipe_Uncommon_Burya_Comrade", "UncommonMetelRecipe", "Recipe_Uncommon_Zhuo_Eight_Star", "Recipe_Uncommon_Tactician_Headsman", "Recipe_Uncommon_Pulsar_Buzzsaw", "Recipe_Uncommon_Borg4a_HauntedGun", "UncommonWardenRecipe", "Recipe_Uncommon_Dian_Yinglong", "Recipe_Uncommon_Nekomata_Breakthrough", "Recipe_Epic_Ajax_Moron", "Recipe_Epic_Copperhead_Genesis", "Recipe_Epic_Igla_Sovereign", "EpicGritRecipe", "EpicTiconRecipe", "Recipe_Epic_Burya_Comrade", "EpicMetelRecipe", "Recipe_Epic_Zhuo_Eight_Star", "Recipe_Epic_Tactician_Headsman", "Recipe_Epic_Pulsar_Buzzsaw", "Recipe_Epic_Borg4a_HauntedGun", "EpicWardenRecipe", "Recipe_Epic_Dian_Yinglong", "Recipe_Epic_Nekomata_Breakthrough", "Recipe_Legendary_Ajax_Moron", "Recipe_Legendary_Copperhead_Genesis", "Recipe_Legendary_Igla_Sovereign", "LegendaryGritRecipe", "LegendaryTiconRecipe", "Recipe_Legendary_Burya_Comrade", "LegendaryMetelRecipe", "Recipe_Legendary_Zhuo_Eight_Star", "Recipe_Legendary_Tactician_Headsman", "Recipe_Legendary_Pulsar_Buzzsaw", "Recipe_Legendary_Borg4a_HauntedGun", "LegendaryWardenRecipe", "Recipe_Legendary_Dian_Yinglong", "Recipe_Legendary_Nekomata_Breakthrough" } do Game.AddToInventory("Items." .. v , 1) end print(" - Added: ALL WEAPONS RECIPES") 製作規範:厄瑞玻斯 Game.AddToInventory("Items.Recipe_Preset_Borg4a_HauntedGun",1) 製作規範:軍用科技篇章6型 Game.AddToInventory("Items.Recipe_Legendary_HauntedCyberdeck",1) 製作規範:電鋸 Game.AddToInventory("Items.Recipe_Legendary_Pulsar_Buzzsaw",1) 製作規範:電鋸 Game.AddToInventory("Items.Recipe_Preset_Pulsar_Buzzsaw_Legendary",1) 製作規範:你要戰便來戰 Game.AddToInventory("Items.Recipe_Legendary_Ajax_Moron",1) 製作規範:應龍 Game.AddToInventory("Items.Recipe_Legendary_Dian_Yinglong",1) 製作規範:寡婦製造者 Game.AddToInventory("Items.Recipe_Preset_Achilles_Nash_Legendary",1) 製作規範: 主權 Game.AddToInventory("Items.Recipe_Legendary_Igla_Sovereign",1) 製作規範: 主權 Game.AddToInventory("Items.Recipe_Preset_Igla_Sovereign_Legendary",1) 製作規範:儈子手 Game.AddToInventory("Items.Recipe_Legendary_Tactician_Headsman",1) 製作規範:儈子手 Game.AddToInventory("Items.Recipe_Preset_Tactician_Headsman_Legendary",1) 製作規範:小叮噹 Game.AddToInventory("Items.Recipe_Preset_Baton_Tinker_Bell_Legendary",1) 製作規範:同誌的鐵錘 Game.AddToInventory("Items.Recipe_Preset_Burya_Comrade_Legendary",1) 製作規範:屠夫的切肉刀 Game.AddToInventory("Items.Recipe_Preset_Butchers_Knife_Iconic_Legendary",1) 製作規範:水蝮蛇 Game.AddToInventory("Items.Recipe_Preset_Cane_Fingers_Legendary",1) 製作規範:鐵膽 Game.AddToInventory("Items.Recipe_Preset_Carnage_Edgerunners_Legendary",1) 製作規範:莫克斯幫 Game.AddToInventory("Items.Recipe_Preset_Carnage_Mox_Legendary",1) 製作規範:詩篇11:6 Game.AddToInventory("Items.Recipe_Preset_Copperhead_Genesis_Legendary",1) 製作規範:藤井偽器 Game.AddToInventory("Items.Recipe_Preset_Dildo_Stout_Legendary",1) 製作規範:零五 Game.AddToInventory("Items.Recipe_Preset_Grad_Buck_Legendary",1) 製作規範:守望 Game.AddToInventory("Items.Recipe_Preset_Grad_Panam_Legendary",1) 製作規範:雞尾酒棒 Game.AddToInventory("Items.Recipe_Preset_Katana_Cocktail_Legendary",1) 製作規範:黑獨角獸 Game.AddToInventory("Items.Recipe_Preset_Katana_GoG_Legendary",1) 製作規範:爪磨 Game.AddToInventory("Items.Recipe_Preset_Katana_Hiromi_Legendary",1) 製作規範:覺 Game.AddToInventory("Items.Recipe_Preset_Katana_Saburo_Legendary",1) 製作規範:手術刀 Game.AddToInventory("Items.Recipe_Preset_Katana_Surgeon_Legendary",1) 製作規範:盡忠丸 Game.AddToInventory("Items.Recipe_Preset_Katana_Takemura_Legendary",1) 製作規範:白虎 Game.AddToInventory("Items.Recipe_Preset_Katana_Wakako_Legendary",1) 製作規範:幽影 Game.AddToInventory("Items.Recipe_Preset_Kenshin_Frank_Legendary",1) 製作規範:混亂 Game.AddToInventory("Items.Recipe_Preset_Kenshin_Royce_Legendary",1) 製作規範:毒刺 Game.AddToInventory("Items.Recipe_Preset_Knife_Stinger_Legendary",1) 製作規範:吹毛求疵 Game.AddToInventory("Items.Recipe_Preset_Kolac_Tiny_Mike_Legendary",1) 製作規範:終夜 Game.AddToInventory("Items.Recipe_Preset_Lexington_Wilson_Legendary",1) 製作規範:退路 Game.AddToInventory("Items.Recipe_Preset_Liberty_Dex_Legendary",1) 製作規範:熾天使 Game.AddToInventory("Items.Recipe_Preset_Liberty_Padre_Legendary",1) 製作規範:金剛 Game.AddToInventory("Items.Recipe_Preset_Liberty_Yorinobu_Legendary",1) 製作規範:突破 Game.AddToInventory("Items.Recipe_Preset_Nekomata_Breakthrough_Legendary",1) 製作規範:青牙 Game.AddToInventory("Items.Recipe_Preset_Neurotoxin_Knife_Iconic_Legendary",1) 製作規範:大木大木 Game.AddToInventory("Items.Recipe_Preset_Nova_Doom_Doom_Legendary",1) 製作規範:金色狠婆娘 Game.AddToInventory("Items.Recipe_Preset_Nue_Jackie_Legendary",1) 製作規範:死亡和稅收 Game.AddToInventory("Items.Recipe_Preset_Nue_Maiko_Legendary",1) 製作規範:麗茲 Game.AddToInventory("Items.Recipe_Preset_Omaha_Suzie_Legendary",1) 製作規範:大赦 Game.AddToInventory("Items.Recipe_Preset_Overture_Cassidy_Legendary",1) 製作規範:大天使 Game.AddToInventory("Items.Recipe_Preset_Overture_Kerry_Legendary",1) 製作規範:真探 Game.AddToInventory("Items.Recipe_Preset_Overture_River_Legendary",1) 製作規範:獵頭 Game.AddToInventory("Items.Recipe_Preset_Punk_Knife_Iconic_Legendary",1) 製作規範:芬裡爾 Game.AddToInventory("Items.Recipe_Preset_Saratoga_Maelstrom_Legendary",1) 製作規範:力大磚飛 Game.AddToInventory("Items.Recipe_Preset_Saratoga_Raffen_Legendary",1) 製作規範:分則能成 Game.AddToInventory("Items.Recipe_Preset_Sidewinder_Divided_Legendary",1) 製作規範:血腥瑪利亞 Game.AddToInventory("Items.Recipe_Preset_Tactician_Dino_Legendary",1) 製作規範:源二郎 Game.AddToInventory("Items.Recipe_Preset_Yukimura_Kiji_Legendary",1) 製作規範:八星銃 Game.AddToInventory("Items.Recipe_Preset_Zhuo_Eight_Star",1) 製作規範:殺戮 Game.AddToInventory("Items.LegendaryCarnageRecipe",1) 製作規範:A-22B 超式 Game.AddToInventory("Items.LegendaryChaoRecipe",1) 製作規範:SPT32 冰爆 Game.AddToInventory("Items.LegendaryGradRecipe",1) 製作規範:JKE-X2 謙信 Game.AddToInventory("Items.LegendaryKenshinRecipe",1) 製作規範:HJSH-18 正宗 Game.AddToInventory("Items.LegendaryMasamuneRecipe",1) 製作規範:前奏 Game.AddToInventory("Items.LegendaryOvertureRecipe",1) 製作規範:DB-4 鐵棍 Game.AddToInventory("Items.LegendaryPalicaRecipe",1) 製作規範:DS1 脈衝 Game.AddToInventory("Items.LegendaryPulsarRecipe",1) 製作規範:D5 響尾蛇 Game.AddToInventory("Items.LegendarySidewinderRecipe",1) 製作規範:SOR-22 Game.AddToInventory("Items.LegendarySor22Recipe",1) 製作規範:M2038 戰術家 Game.AddToInventory("Items.LegendaryTacticianRecipe",1) 製作規範:HJKE-11 幸村 Game.AddToInventory("Items.LegendaryYukimuraRecipe",1) 製作規範:魔爪 Game.AddToInventory("Items.LegendaryFangedAxeRecipe", 1) 製作規範:要人命 Game.AddToInventory("Items.LegendaryChainswordRecipe", 1) 製作規範:剃刀 Game.AddToInventory("Items.LegendaryMacheteBorgRecipe", 1) 製作規範:朋克刀 Game.AddToInventory("Items.LegendaryPunkKnifeRecipe", 1) 製作規範:神經毒素小刀 Game.AddToInventory("Items.LegendaryNeurotoxinKnifeRecipe", 1) 製作規範:河童 Game.AddToInventory("Items.LegendaryKappaRecipe", 1) 製作規範:線香 Game.AddToInventory("Items.LegendarySenkohRecipe", 1) 製作規範:MA70 Game.AddToInventory("Items.LegendaryMA70Recipe", 1) 製作規範:vst-37炙土 Game.AddToInventory("Items.LegendaryPozharRecipe", 1) 製作規範:九尾 Game.AddToInventory("Items.LegendaryKyubiRecipe", 1) 製作規範:SOR-22 Game.AddToInventory("Items.LegendarySor22Recipe",1) 製作規範:SPT32 冰爆 Game.AddToInventory("Items.LegendaryGradRecipe",1) 製作規範:M-179E 阿喀琉斯 Game.AddToInventory("Items.LegendaryAchillesRecipe",1) 製作規範:M-251S 阿賈克斯 Game.AddToInventory("Items.LegendaryAjaxRecipe",1) 製作規範:阿修羅 Game.AddToInventory("Items.LegendaryAshuraRecipe",1) 製作規範:棒球棒 Game.AddToInventory("Items.LegendaryBatRecipe",1) 製作規範:電警棍ALPHA Game.AddToInventory("Items.LegendaryBatonAlphaRecipe",1) 製作規範:電警棍BETA Game.AddToInventory("Items.LegendaryBatonBetaRecipe",1) 製作規範:電警棍GAMMA Game.AddToInventory("Items.LegendaryBatonGammaRecipe",1) 製作規範:廚刀 Game.AddToInventory("Items.LegendaryButchersKnifeRecipe",1) 製作規範:D5-銅斑蛇 Game.AddToInventory("Items.LegendaryCopperheadRecipe",1) 製作規範:D5-銅斑蛇 Game.AddToInventory("Items.Recipe_Legendary_Copperhead_Genesis",1) 製作規範:撬棍 Game.AddToInventory("Items.LegendaryCrowbarRecipe",1) 製作規範:碾碎者 Game.AddToInventory("Items.LegendaryCrusherRecipe",1) 製作規範:防禦者 Game.AddToInventory("Items.LegendaryDefenderRecipe",1) 製作規範:HA-4硬骨頭 Game.AddToInventory("Items.LegendaryGritRecipe",1) 製作規範:斷頭台 Game.AddToInventory("Items.LegendaryGuillotineRecipe",1) 製作規範:錘子 Game.AddToInventory("Items.LegendaryHammerRecipe",1) 製作規範:金棒 Game.AddToInventory("Items.LegendaryKanaboRecipe",1) 製作規範:武士刀 Game.AddToInventory("Items.LegendaryKatanaMilitaryRecipe",1) 製作規範:武士刀 Game.AddToInventory("Items.LegendaryKatanaRecipe",1) 製作規範:小刀 Game.AddToInventory("Items.LegendaryKnifeRecipe",1) 製作規範:反曲刀 Game.AddToInventory("Items.LegendaryKukriRecipe",1) 製作規範:M-10AF萊剋星頓 Game.AddToInventory("Items.LegendaryLexingtonRecipe",1) 製作規範:自由 Game.AddToInventory("Items.LegendaryLibertyRecipe",1) 製作規範:快刀 Game.AddToInventory("Items.LegendaryMacheteBorgRecipe",1) 製作規範:彎刀 Game.AddToInventory("Items.LegendaryMacheteRecipe",1) 製作規範:暴風雪 Game.AddToInventory("Items.LegendaryMetelRecipe",1) 製作規範:鵺 Game.AddToInventory("Items.LegendaryNueRecipe",1) 製作規範:M-76e奧馬哈 Game.AddToInventory("Items.LegendaryOmahaRecipe",1) 製作規範:撬胎棒 Game.AddToInventory("Items.LegendaryPipeWrenchRecipe",1) 製作規範:M221薩拉托加 Game.AddToInventory("Items.LegendarySaratogaRecipe",1) 製作規範:懷劍 Game.AddToInventory("Items.LegendaryTantoRecipe",1) 製作規範:DB-2手鋸 Game.AddToInventory("Items.LegendaryTesteraRecipe",1) 製作規範:軍用科技帝康 Game.AddToInventory("Items.LegendaryTiconRecipe",1) 製作規範:撬胎棒 Game.AddToInventory("Items.LegendaryTireIronRecipe",1) 製作規範:戰斧 Game.AddToInventory("Items.LegendaryTomahawkRecipe",1) 製作規範:DA8本影 Game.AddToInventory("Items.LegendaryUmbraRecipe",1) 製作規範:統一 Game.AddToInventory("Items.LegendaryUnityRecipe",1) 製作規範:守護 Game.AddToInventory("Items.LegendaryWardenRecipe",1) 製作規範:RT-46風暴 Game.AddToInventory("Items.Recipe_Legendary_Burya_Comrade",1) 製作規範:RT-46風暴 Game.AddToInventory("Items.LegendaryBuryaRecipe",1) 製作規範:鋼管 Game.AddToInventory("Items.LegendaryIronPipeRecipe",1) 製作規範:G-58 典式 Game.AddToInventory("Items.LegendaryDianRecipe",1) 製作規範:DB-4 針式導彈Game.AddToInventory("Items.LegendaryIglaRecipe",1) 製作規範:貓又 Game.AddToInventory("Items.LegendaryNekomataRecipe",1) 製作規範:貓又 Game.AddToInventory("Items.Recipe_Legendary_Nekomata_Breakthrough",1) 製作規範:DR5 新星 Game.AddToInventory("Items.LegendaryNovaRecipe",1) 製作規範:DR12 類星體 Game.AddToInventory("Items.LegendaryQuasarRecipe",1) 製作規範:M2038 戰術家 Game.AddToInventory("Items.LegendaryTacticianRecipe",1) 製作規範:HJKE-11 幸村 Game.AddToInventory("Items.LegendaryYukimuraRecipe",1) 製作規範:L-69 卓式 Game.AddToInventory("Items.Recipe_Legendary_Zhuo_Eight_Star",1) 製作規範:L-69 卓式 Game.AddToInventory("Items.LegendaryZhuoRecipe",1) 製作規範:DB-2 薩達拉 Game.AddToInventory("Items.LegendarySataraRecipe",1) 製作規範:DB-4芒刃 Game.AddToInventory("Items.LegendaryPalicaRecipe",1) 製作規範:TKI-20 信玄 Game.AddToInventory("Items.LegendaryShingenRecipe",1) 製作規範:傾力治療5型 Game.AddToInventory("Items.RecipeFirstAidWhiffV2",1) 製作規範:複爾康5型 Game.AddToInventory("Items.RecipeBonesMcCoy70V2",1) 製作規範:好樣的生物危害手雷 Game.AddToInventory("Items.RecipeGrenadeBiohazardLegendary",1) 製作規範:電磁脈衝手雷 Game.AddToInventory("Items.RecipeGrenadeEMPLegendary",1) 製作規範:X-22閃光彈 Game.AddToInventory("Items.RecipeGrenadeFlashLegendary",1) 製作規範:F-7GX破片手雷 Game.AddToInventory("Items.RecipeGrenadeFragHoming",1) 製作規範:焦土燃燒手雷 Game.AddToInventory("Items.RecipeGrenadeIncendiaryLegendary",1) 製作規範:偵察手雷 Game.AddToInventory("Items.RecipeGrenadeReconLegendary",1) 製作規範:煙霧彈 Game.AddToInventory("Items.RecipeGrenadeSmokeLegendary",1) 製作規範:奧佐布的鼻子 Game.AddToInventory("Items.RecipeGrenadeOzobsNose",1) 製作規範:強尼的飛行眼鏡 Game.AddToInventory("Items.Recipe_Q005_Johnny_Glasses_Legendary",1) 製作規範:強尼的長褲 Game.AddToInventory("Items.Recipe_Q005_Johnny_Pants_Legendary",1) 製作規範:強尼的背心 Game.AddToInventory("Items.Recipe_Q005_Johnny_Shirt_Legendary",1) 製作規範:強尼的鞋子 Game.AddToInventory("Items.Recipe_Q005_Johnny_Shoes_Legendary",1) 製作規範:強尼的武士樂隊夾克 Game.AddToInventory("Items.Recipe_SQ031_Samurai_Jacket_Legendary",1) 來源:遊俠網
https://gamemad.com/guide/347928
0