0 of 0

File information

Last updated

Original upload

Created by

Humanist1996

Uploaded by

Humanist1996

Virus scan

Safe to use

Tags for this mod

About this mod

Unlock online content, special quests, weapons, clothing, items and much more.

Permissions and credits
Donations
http://fable3mod.com/forums/index.php?t=msg&th=225&start=0&

This method allows you to make changes to the script without relaunching the game

Setup:

use Catspaw's GFWL emu
Put Data and DLC folder in the base Fable 3 game directory

MyScript01.lua is executed once per 60 frames (one second on 60fps rendering)
MyScript02.lua is executed only when screen is fading

Inside MyScript02.lua I have kept a long code that unlocks pre order quests, dlc items, weapons, armor and more. If everything is working correctly you will be receiving 1 guild seal and coin whenever scene changes.

Notes
1) Start keeping multiple saves by pressing "P" and going to save room
3) If you run into bugs remove the script and restore it back when needed


You can find other codes in the comments, downloads and other places online

Additional scripts you might find useful

If you find new useful scripts please mention it in the comments :)

Useful basic scripts that adds money and experience
Thank you @roxas191115234

Spoiler:  
Show

Money.Add(GetLocalHero(), 100000, 0)
Debug.SpawnExperienceOrbs(1000)


A good all in one script that adds preorder quests, dlc items, weapons, armors and more
Spoiler:  
Show

Gameflow.AllowFakePreOrderTemplates = true
Gameflow.HerosParent = '_Father'
Gameflow.Fable2HeroEndGender = '_Father'
Money.Add(GetLocalHero(), 1, 0)
Debug.SpawnExperienceOrbs(1)
local fillExpendableItems = {
'ObjectInventoryGiftChessboard',
'ObjectInventoryGiftChocolates',
'ObjectInventoryGiftFlowers',
'ObjectInventoryGiftGoblet',
'ObjectInventoryGiftHandMirror',
'ObjectInventoryGiftJewellery',
'ObjectInventoryGiftPerfume',
'ObjectInventoryGiftFruitBowlSilver',
'ObjectInventoryGiftRing',
'ObjectInventoryGiftToyBow',
'ObjectInventoryGiftToyGun',
'ObjectInventoryGiftToyHorse',
'ObjectInventoryGiftToyPorcelainDoll',
'ObjectInventoryGiftToyRagDoll',
'ObjectInventoryGiftToySword',
'ObjectInventoryGiftToyTeddyBear',
'ObjectInventoryGiftGemAmethyst',
'ObjectInventoryGiftGemDiamond',
'ObjectInventoryGiftGemEmerald',
'ObjectInventoryGiftGemJet',
'ObjectInventoryGiftGemRuby',
'ObjectInventoryGiftGemPearl',
'ObjectInventoryGiftGemTopaz',
'DoubleBedLevel5',
'BedsideTableLevel5',
'DeskTableLevel5',
'LightFixingLevel5',
'ChildBedLevel5',
'SinkLevel3',
'StoveLevel3',
'ComfyChairLevel5',
'TableLevel5',
'BookcaseLevel5',
'CupboardLevel5',
'DresserLevel5',
'ClosetLevel5',
'DrawersLevel5',
'CollectablePainting_Ben',
'CollectablePainting_Elise',
'CollectablePainting_Elliot',
'CollectablePainting_Logan',
'CollectablePainting_Page',
'CollectablePainting_Sabine',
'CollectablePainting_Saker',
'CollectablePainting_Swift',
'CollectablePainting_Theresa',
'CollectablePainting_Walter',
'CastlePicture_PanoramicLarge',
'CastlePicture_PanoramicMedium',
'CastlePicture_PanoramicSmall',
'CastlePicture_PortraitLarge',
'CastlePicture_PortraitMedium',
'PictureFrameFF1',
'PictureFrameFF2',
'PictureFrameSmall1',
'PictureFrameSmall2',
'PictureFrameSmall3',
'PictureFrameSmall4',
'PictureFrameSmall5',
'PictureFrameSmall6',
'PicturePanoramic_ExtraLarge',
'PicturePanoramic_Large',
'PicturePortrait_ExtraLarge',
'QC130_ObjectTrophyLogansCrown',
'AUR_Rug_Large_V1',
'AUR_Rug_Large_V2',
'AUR_Rug_Small_V1',
'AUR_Rug_Small_V2',
'AUR_Small_Table',
'Rug_Large_Decorative_V1',
'Rug_Large_Decorative_V2',
'Rug_Large_Elipse_V1',
'Rug_Large_Elipse_V2',
'Rug_Large_Round_V1',
'Rug_Small_Decorative_V1',
'Rug_Small_Decorative_V2',
'Rug_XLarge_Decorative_V1',
'Rug_XLarge_Decorative_V2',
'BC_Suit_Armour_V1_Swappable',
'Telescope_Swappable',
'ToyBox_Swappable',
'WhiskeyKeg_Static_Swappable',
'BeerKeg_Static_Swappable',
'Globe_Swappable',
'GrandfatherClock_Swappable',
'Hatstand_Swappable',
}
for key, value in pairs(fillExpendableItems) do
while Inventory.GetNumberOfItemsOfType(GetLocalHero(), value) < 9 do
Inventory.AddItemOfType(GetLocalHero(), value)
end
end
while ((Inventory.GetNumberOfItemsOfType(GetLocalHero(), 'ObjectInventoryPotionHealth')) < 9)
do
Inventory.AddItemOfType(GetLocalHero(), 'ObjectInventoryPotionHealth')
end
while ((Inventory.GetNumberOfItemsOfType(GetLocalHero(), 'ObjectInventoryPotionSlowTime')) < 9)
do
Inventory.AddItemOfType(GetLocalHero(), 'ObjectInventoryPotionSlowTime')
end
while ((Inventory.GetNumberOfItemsOfType(GetLocalHero(), 'ObjectInventoryPotionDeadRising')) < 9)
do
Inventory.AddItemOfType(GetLocalHero(), 'ObjectInventoryPotionDeadRising')
end
local allLegendaryWeapons = {
'ObjectInventoryLegendaryHammerAbsolver',
'ObjectInventoryLegendaryHammerAnwarGlory',
'ObjectInventoryLegendaryHammerAuroraShield',
'ObjectInventoryLegendaryHammerBloodstoneBludgeon',
'ObjectInventoryLegendaryHammerChampion',
'ObjectInventoryLegendaryHammerDragonboneHammer',
'ObjectInventoryLegendaryHammerFaerie',
'ObjectInventoryLegendaryHammerHammerOfTheWhale',
'ObjectInventoryLegendaryHammerJackHammer',
'ObjectInventoryLegendaryHammerLunariumPounder',
'ObjectInventoryLegendaryHammerMalletsMallet',
'ObjectInventoryLegendaryHammerScytheHammer',
'ObjectInventoryLegendaryHammerSorrowsFist',
'ObjectInventoryLegendaryHammerTenderiser',
'ObjectInventoryLegendaryHammerTrollblight',
'ObjectInventoryLegendaryHammerTwatter',
'ObjectInventoryLegendaryHammerWillmageddon',
'ObjectInventoryLegendaryPistolBarnumificator',
'ObjectInventoryLegendaryPistolBlackDragon',
'ObjectInventoryLegendaryPistolBloodcraver',
'ObjectInventoryLegendaryPistolBonesmasher',
'ObjectInventoryLegendaryPistolBriarsBlaster',
'ObjectInventoryLegendaryPistolChickenbane',
'ObjectInventoryLegendaryPistolDeadNed',
'ObjectInventoryLegendaryPistolDesertFury',
'ObjectInventoryLegendaryPistolDragonstomper',
'ObjectInventoryLegendaryPistolFullMonty',
'ObjectInventoryLegendaryPistolGnomewrecker',
'ObjectInventoryLegendaryPistolHolyVengeance',
'ObjectInventoryLegendaryPistolIceMaiden',
'ObjectInventoryLegendaryPistolMiriansMutilator',
'ObjectInventoryLegendaryPistolPerforator',
'ObjectInventoryLegendaryPistolSailorGeriShooter',
'ObjectInventoryLegendaryRifleArkwrightFlintlock',
'ObjectInventoryLegendaryRifleDefender',
'ObjectInventoryLegendaryRifleDirtyHarriet',
'ObjectInventoryLegendaryRifleEqualiser',
'ObjectInventoryLegendaryRifleEthelbertBoner',
'ObjectInventoryLegendaryRifleFacemelter',
'ObjectInventoryLegendaryRifleGusketMusket',
'ObjectInventoryLegendaryRifleHeroCompanion',
'ObjectInventoryLegendaryRifleMarksman',
'ObjectInventoryLegendaryRifleMolynator',
'ObjectInventoryLegendaryRifleMoneyShot',
'ObjectInventoryLegendaryRifleSakerFlintlock',
'ObjectInventoryLegendaryRifleScattershot',
'ObjectInventoryLegendaryRifleSimmonsShotgun',
'ObjectInventoryLegendaryRifleSkormJustice',
'ObjectInventoryLegendaryRifleSwiftIrregular',
'ObjectInventoryLegendarySwordAvoLamentation',
'ObjectInventoryLegendarySwordBaronSlayer',
'ObjectInventoryLegendarySwordBeadleCutlass',
'ObjectInventoryLegendarySwordCasanova',
'ObjectInventoryLegendarySwordChanneler',
'ObjectInventoryLegendarySwordDonorKebab',
'ObjectInventoryLegendarySwordFishknife',
'ObjectInventoryLegendarySwordInquisitor',
'ObjectInventoryLegendarySwordMerchantsBodyguard',
'ObjectInventoryLegendarySwordMogoShafter',
'ObjectInventoryLegendarySwordMrStabby',
'ObjectInventoryLegendarySwordPorkSword',
'ObjectInventoryLegendarySwordShardborne',
'ObjectInventoryLegendarySwordSlimquick',
'ObjectInventoryLegendarySwordSouldrinker',
'ObjectInventoryLegendarySwordSwingingSword',
'ObjectInventoryLegendarySwordThundaraga',
'ObjectInventoryLegendarySwordThunderblade',
'ObjectInventoryLegendarySwordWolfsbane',
}
for key, value in pairs(allLegendaryWeapons) do
if Inventory.GetNumberOfItemsOfType(GetLocalHero(), value) == 0 then
Inventory.AddItemOfType(GetLocalHero(), value)
end
end
for key,value in pairs(allLegendaryWeapons) do
if Inventory.GetNumberOfItemsOfType(GetLocalHero(), value) > 1 then
Inventory.RemoveItemOfType(GetLocalHero(), value)
end
end
local allObjects = {
'ObjectClothingTopPrinceM',
'ObjectClothingHatPrinceM',
'ObjectClothingBootsPrinceM',
'ObjectClothingGlovesPrinceM',
'ObjectClothingTrousersPrinceM',
'ObjectClothingTopPrincePracticalM',
'ObjectClothingHatPrincePracticalM',
'ObjectClothingBootsPrincePracticalM',
'ObjectClothingGlovesPrincePracticalM',
'ObjectClothingTrousersPrincePracticalM',
'ObjectClothingHatPrincessF',
'ObjectClothingTopPrincessF',
'ObjectClothingBootsPrincessF',
'ObjectClothingGlovesPrincessF',
'ObjectClothingTrousersPrincessF',
'ObjectClothingTopPrincessPracticalF',
'ObjectClothingBootsPrincessPracticalF',
'ObjectClothingGlovesPrincessPracticalF',
'ObjectClothingTrousersPrincessPracticalF',
'ObjectClothingHatPyjamasM',
'ObjectClothingTopPyjamasM',
'ObjectClothingBootsPyjamasM',
'ObjectClothingTrousersPyjamasM',
'ObjectClothingHatPyjamasF',
'ObjectClothingTopPyjamasF',
'ObjectClothingBootsPyjamasF',
'ObjectClothingTrousersPyjamasF',
'ObjectClothingHatGypsyM',
'ObjectClothingTopGypsyM',
'ObjectClothingBootsGypsyM',
'ObjectClothingGlovesGypsyM',
'ObjectClothingTrousersGypsyM',
'ObjectClothingHatGypsyF',
'ObjectClothingTopGypsyF',
'ObjectClothingBootsGypsyF',
'ObjectClothingGlovesGypsyF',
'ObjectClothingTrousersGypsyF',
'ObjectClothingHatSoldier',
'ObjectClothingTopSoldier',
'ObjectClothingBootsSoldier',
'ObjectClothingTrousersSoldier',
'ObjectClothingHatScotM',
'ObjectClothingTopScotM',
'ObjectClothingBootsScotM',
'ObjectClothingGlovesScotM',
'ObjectClothingTrousersScotM',
'ObjectClothingHatScotF',
'ObjectClothingTopScotF',
'ObjectClothingBootsScotF',
'ObjectClothingGlovesScotF',
'ObjectClothingTrousersScotF',
'ObjectClothingHatDog',
'ObjectClothingTopDog',
'ObjectClothingBootsDog',
'ObjectClothingGlovesDog',
'ObjectClothingBootsReaverIndM',
'ObjectClothingGlovesReaverIndM',
'ObjectClothingHatReaverIndM',
'ObjectClothingTopReaverIndM',
'ObjectClothingTrousersReaverIndM',
'ObjectClothingHatChicken',
'ObjectClothingTopChicken',
'ObjectClothingBootsChicken',
'ObjectClothingGlovesChicken',
'ObjectClothingHatRenegadeM',
'ObjectClothingTopRenegadeM',
'ObjectClothingBootsRenegadeM',
'ObjectClothingGlovesRenegadeM',
'ObjectClothingTrousersRenegadeM',
'ObjectClothingHatRenegadeF',
'ObjectClothingTopRenegadeF',
'ObjectClothingBootsRenegadeF',
'ObjectClothingGlovesRenegadeF',
'ObjectClothingTrousersRenegadeShortsF',
'ObjectClothingTopMilitaryM',
'ObjectClothingBootsMilitaryM',
'ObjectClothingGlovesMilitaryM',
'ObjectClothingTrousersMilitaryM',
'ObjectClothingHatStrengthM',
'ObjectClothingTopStrengthM',
'ObjectClothingBootsStrengthM',
'ObjectClothingGlovesStrengthM',
'ObjectClothingTrousersStrengthM',
'ObjectClothingHatStrengthF',
'ObjectClothingTopStrengthF',
'ObjectClothingBootsStrengthF',
'ObjectClothingGlovesStrengthF',
'ObjectClothingTrousersStrengthF',
'ObjectClothingHatSkillM',
'ObjectClothingTopSkillM',
'ObjectClothingBootsSkillM',
'ObjectClothingGlovesSkillM',
'ObjectClothingTrousersSkillM',
'ObjectClothingHatSkillF',
'ObjectClothingTopSkillF',
'ObjectClothingBootsSkillF',
'ObjectClothingGlovesSkillF',
'ObjectClothingTrousersSkillF',
'ObjectClothingHatWillM',
'ObjectClothingTopWillM',
'ObjectClothingBootsWillM',
'ObjectClothingGlovesWillM',
'ObjectClothingTrousersWillM',
'ObjectClothingHatWillF',
'ObjectClothingTopWillF',
'ObjectClothingBootsWillF',
'ObjectClothingGlovesWillF',
'ObjectClothingTrousersWillF',
'ObjectClothingHatMasqueradeM',
'ObjectClothingTopMasqueradeM',
'ObjectClothingMaskMasqueradeM',
'ObjectClothingBootsMasqueradeM',
'ObjectClothingGlovesMasqueradeM',
'ObjectClothingTrousersMasqueradeM',
'ObjectClothingHatMasqueradeF',
'ObjectClothingTopMasqueradeF',
'ObjectClothingMaskMasqueradeF',
'ObjectClothingBootsMasqueradeF',
'ObjectClothingGlovesMasqueradeF',
'ObjectClothingTrousersMasqueradeF',
'ObjectClothingHatAuroranM',
'ObjectClothingTopAuroranM',
'ObjectClothingBootsAuroranM',
'ObjectClothingGlovesAuroranM',
'ObjectClothingTrousersAuroranM',
'ObjectClothingHatAuroranF',
'ObjectClothingTopAuroranF',
'ObjectClothingBootsAuroranF',
'ObjectClothingGlovesAuroranF',
'ObjectClothingTrousersAuroranF',
'ObjectClothingHatKingM',
'ObjectClothingTopKingM',
'ObjectClothingBootsKingM',
'ObjectClothingGlovesKingM',
'ObjectClothingTrousersKingM',
'ObjectClothingHatQueenF',
'ObjectClothingTopQueenF',
'ObjectClothingBootsQueenF',
'ObjectClothingGlovesQueenF',
'ObjectClothingTrousersQueenF',
'ObjectClothingHatSanta',
'ObjectClothingHatCook',
'ObjectClothingHatPrisonGuard',
'ObjectClothingTopPrisonGuard',
'ObjectClothingBootsPrisonGuard',
'ObjectClothingGlovesPrisonGuard',
'ObjectClothingTrousersPrisonGuard',
'ObjectClothingHatPrisoner',
'ObjectClothingTopPrisoner',
'ObjectClothingBootsPrisoner',
'ObjectClothingGlovesPrisoner',
'ObjectClothingTrousersPrisoner',
'ObjectClothingHatSandFury',
'ObjectClothingTopSandFury',
'ObjectClothingBootsSandFury',
'ObjectClothingGlovesSandFury',
'ObjectClothingTrousersSandFury',
'ObjectClothingTopProstitute',
'ObjectClothingBootsProstitute',
'ObjectClothingGlovesProstitute',
'ObjectClothingTrousersProstitute',
'ObjectTattooFaceHighlander',
'ObjectTattooBackHighlander',
'ObjectTattooChestHighlander',
'ObjectTattooArmLeftHighlander',
'ObjectTattooArmRightHighlander',
'ObjectTattooLegLeftHighlander',
'ObjectTattooLegRightHighlander',
'ObjectTattooFaceAuroran',
'ObjectTattooBackAuroran',
'ObjectTattooChestAuroran',
'ObjectTattooArmLeftAuroran',
'ObjectTattooArmRightAuroran',
'ObjectTattooLegLeftAuroran',
'ObjectTattooLegRightAuroran',
'ObjectTattooFaceDweller',
'ObjectTattooBackDweller',
'ObjectTattooChestDweller',
'ObjectTattooArmLeftDweller',
'ObjectTattooArmRightDweller',
'ObjectTattooLegLeftDweller',
'ObjectTattooLegRightDweller',
'ObjectTattooFaceNature',
'ObjectTattooBackNature',
'ObjectTattooChestNature',
'ObjectTattooArmLeftNature',
'ObjectTattooArmRightNature',
'ObjectTattooLegLeftNature',
'ObjectTattooLegRightNature',
'ObjectTattooFaceOldKingdom',
'ObjectTattooBackOldKingdom',
'ObjectTattooChestOldKingdom',
'ObjectTattooArmLeftOldKingdom',
'ObjectTattooArmRightOldKingdom',
'ObjectTattooLegLeftOldKingdom',
'ObjectTattooLegRightOldKingdom',
'ObjectTattooFaceRoyal',
'ObjectTattooBackRoyal',
'ObjectTattooChestRoyal',
'ObjectTattooArmLeftRoyal',
'ObjectTattooArmRightRoyal',
'ObjectTattooLegLeftRoyal',
'ObjectTattooLegRightRoyal',
'ObjectClothingHatPrisonGuard',
'ObjectClothingTopPrisonGuard',
'ObjectClothingBootsPrisonGuard',
'ObjectClothingGlovesPrisonGuard',
'ObjectClothingTrousersPrisonGuard',
'ObjectClothingHatPrisoner',
'ObjectClothingTopPrisoner',
'ObjectClothingBootsPrisoner',
'ObjectClothingGlovesPrisoner',
'ObjectClothingTrousersPrisoner',
'ObjectClothingHatSandFury',
'ObjectClothingTopSandFury',
'ObjectClothingBootsSandFury',
'ObjectClothingGlovesSandFury',
'ObjectClothingTrousersSandFury',
'ObjectClothingTopProstitute',
'ObjectClothingBootsProstitute',
'ObjectClothingGlovesProstitute',
'ObjectClothingTrousersProstitute',
'ObjectHairF3Pix',
'ObjectHairF3Bob',
'ObjectHairF3Afro',
'ObjectHairF3Long',
'ObjectHairF3Mohawk',
'ObjectHairF3TiedBun',
'ObjectHairF3LongBun',
'ObjectHairF3ShortBun',
'ObjectHairF3Cornrows',
'ObjectHairF3Standard',
'ObjectHairF3BaldDread',
'ObjectHairF3YoungHero',
'ObjectHairF3LongThick',
'ObjectHairF3ShortFringed',
'ObjectHairF3ShortPonyTail',
'ObjectBeardF3Full',
'ObjectBeardF3Beard',
'ObjectBeardF3Mouth',
'ObjectBeardF3Tache',
'ObjectBeardF3Muttons',
'ObjectBeardF3LongTied',
'ObjectBeardF3TacheBeard',
'ObjectBeardF3TacheSidies',
'ObjectTattooFaceGuild',
'ObjectTattooBackGuild',
'ObjectTattooBackGuild2',
'ObjectTattooChestGuild',
'ObjectTattooArmLeftGuild',
'ObjectTattooArmRightGuild',
'ObjectTattooLegLeftGuild',
'ObjectTattooLegRightGuild',
'ObjectTattooFaceMilitary',
'ObjectTattooBackMilitary',
'ObjectTattooChestMilitary',
'ObjectTattooArmLeftMilitary',
'ObjectTattooArmRightMilitary',
'ObjectTattooLegLeftMilitary',
'ObjectTattooLegRightMilitary',
'ObjectTattooArmLeftSE1',
'ObjectTattooArmRightSE1',
'ObjectTattooBackSE1',
'ObjectTattooChestSE1',
'ObjectTattooLegLeftSE1',
'ObjectTattooLegRightSE1',
'ObjectTattooArmRightSE2',
'ObjectTattooArmLeftSE2',
'ObjectTattooLegRightSE2',
'ObjectTattooLegLeftSE2',
'ObjectTattooChestSE2',
'ObjectTattooBackSE2',
'ObjectTattooArmRightSE3',
'ObjectTattooArmLeftSE3',
'ObjectTattooLegRightSE3',
'ObjectTattooLegLeftSE3',
'ObjectTattooChestSE3',
'ObjectTattooBackSE3',
'ObjectTattooArmRightSE4',
'ObjectTattooArmLeftSE4',
'ObjectTattooLegRightSE4',
'ObjectTattooLegLeftSE4',
'ObjectTattooChestSE4',
'ObjectTattooBackSE4',
'ObjectTattooArmRightSE5',
'ObjectTattooArmLeftSE5',
'ObjectTattooChestSE5',
'ObjectTattooBackSE5',
'ObjectTattooFaceSE5',
'ObjectTattooLegRightSE5',
'ObjectTattooLegLeftSE5',
'ObjectTattooArmRightSE6',
'ObjectTattooArmLeftSE6',
'ObjectTattooLegRightSE6',
'ObjectTattooLegLeftSE6',
'ObjectTattooChestSE6',
'ObjectTattooBackSE6',
'ObjectTattooFaceSE6',
'ObjectTattooArmRightSE7',
'ObjectTattooArmLeftSE7',
'ObjectTattooLegRightSE7',
'ObjectTattooLegLeftSE7',
'ObjectTattooChestSE7',
'ObjectTattooBackSE7',
'ObjectTattooFaceSE7',
'ObjectMakeupBeauty1',
'ObjectMakeupBeauty2',
'ObjectMakeupEgyptian1',
'ObjectMakeupEgyptian2',
'ObjectMakeupGeisha1',
'ObjectMakeupGeisha2',
'ObjectMakeupGoth',
'ObjectMakeupGypsy',
'ObjectMakeupHarlequin',
'ObjectMakeupMarcelM',
'ObjectMakeupMoulinRouge',
'ObjectMakeupOutOfAfrica',
'ObjectMakeupProstitute',
'ObjectMakeupRenegade1',
'ObjectMakeupRenegade2',
'ObjectMakeupRenegade3',
'ObjectMakeupRorscharch',
'ObjectMakeupStandard1',
'ObjectMakeupStandard2',
}
for key, value in pairs(allObjects) do
if Inventory.GetNumberOfItemsOfType(GetLocalHero(), value) == 0 then
Inventory.AddItemOfType(GetLocalHero(), value)
end
end
for key,value in pairs(allObjects) do
if Inventory.GetNumberOfItemsOfType(GetLocalHero(), value) > 1 then
Inventory.RemoveItemOfType(GetLocalHero(), value)
end
end


Change weapon morphs to even unique unobtainable ones!  (Note - Changes appearance of all weapons, Choose the ones you like and change true to false to revert)

Spoiler:  
Show

Gameflow.weapon MeshOverride = true
Gameflow.PrimaryMeshOverride = "PrimaryMeshAuroran"
Gameflow.PrimaryMeshOverride = "PrimaryMeshCrystal"
Gameflow.PrimaryMeshOverride = "PrimaryMeshEvil1"
Gameflow.PrimaryMeshOverride = "PrimaryMeshEvil2"
Gameflow.PrimaryMeshOverride = "PrimaryMeshGood1"
Gameflow.PrimaryMeshOverride = "PrimaryMeshGood2"
Gameflow.PrimaryMeshOverride = "PrimaryMeshIntricate"
Gameflow.PrimaryMeshOverride = "PrimaryMeshOrganic"
Gameflow.PrimaryMeshOverride = "PrimaryMeshReaver"
Gameflow.PrimaryMeshOverride = "PrimaryMeshBase"
Gameflow.Secondary MeshOverride = "SecondaryMeshAuroran"
Gameflow.Secondary MeshOverride = "SecondaryMeshSpell"
Gameflow.Secondary MeshOverride = "SecondaryMeshBone"
Gameflow.Secondary MeshOverride = "SecondaryMeshRoyal"
Gameflow.Secondary MeshOverride = "SecondaryMeshBase"
Gameflow.PrimaryMeshSize = "SizeSmall"
Gameflow.PrimaryMeshSize = "SizeMedium"
Gameflow.PrimaryMeshSize = "SizeLarge"
Gameflow.PrimaryColour = "PrimaryBackgroundColourMetallicRed"
Gameflow.PrimaryColour = "PrimaryBackgroundColourSilver"
Gameflow.PrimaryColour = "PrimaryBackgroundColourMetallicBlack"
Gameflow.PrimaryColour = "PrimaryBackgroundColourMetallicGreen"
Gameflow.PrimaryColour = "PrimaryBackgroundColourSteel"
Gameflow.PrimaryColour = "PrimaryBackgroundColourGold"
Gameflow.PrimaryColour = "PrimaryBackgroundColourMetallicPurple"
Gameflow.PrimaryColour = "PrimaryBackgroundColourCopper"
Gameflow.PrimaryColour = "PrimaryBackgroundColourMetallicBronze"
Gameflow.ForegroundColour = "PrimaryForegroundColourMetallicRed"
Gameflow.ForegroundColour = "PrimaryForegroundColourSilver"
Gameflow.ForegroundColour = "PrimaryForegroundColourMetallicBlack"
Gameflow.ForegroundColour = "PrimaryForegroundColourMetallicGreen"
Gameflow.ForegroundColour = "PrimaryForegroundColourSteel"
Gameflow.ForegroundColour = "PrimaryForegroundColourGold"
Gameflow.ForegroundColour = "PrimaryForegroundColourMetallicPurple"
Gameflow.ForegroundColour = "PrimaryForegroundColourCopper"
Gameflow.ForegroundColour = "PrimaryForegroundColourMetallicBronze"
Gameflow.ParticleEffect = "LIGHTNING"
Gameflow.ParticleEffect = "FIRE"
Gameflow.ParticleEffect = "SHADOW"
Gameflow.ParticleEffect = "HOLY"
Gameflow.ParticleEffect = "BLOOD"
Gameflow.ParticleEffect = "ETHEREAL"
Gameflow.ParticleEffect = "GOLDEN"
Gameflow.ParticleEffect = "POISON"


Open Co-op only demon door at Mistpeak

Spoiler:  
Show

if not Layers.IsLayerActive("QD030_MistpeakValleyDemonDoorTransition") then
QuestTracker.SetAsCompleted(GetLocalHero(), "QD030_MistpeakValleyDemonDoor")
Layers.ActivateLayer("QD030_MistpeakValleyDemonDoorTransition")
end


Code for making villagers wealthy. Changes their dialogue and they slowly upgrade their homes with expensive furniture
Thank you again @artoffeel

Spoiler:  
Show

ScriptFunction.SetWealthValueForAllVillagesOnLevel(100)


Code for changing your parent gender. Possibly unlocks secret dialogues as if you imported Fable 2 save on Xbox. Please avoid changing the parent gender to "_Mother" as reported in the comments it causes game breaking bugs.
Thank you @catgogo5 for this code
Thank you @Tallyr for simplifying this code
Thank you @TonyStarkIND for checking the code for bugs

Spoiler:  
Show

Gameflow.HerosParent = '_Father'
Gameflow.Fable2HeroEndGender = '_Father'