Baldur's Gate 3
0 of 0

File information

Last updated

Original upload

Created by

LibertusRex

Uploaded by

WildWolfx007

Virus scan

Safe to use

49 comments

  1. kayra1234567
    kayra1234567
    • member
    • 1 kudos
    Can you add the cheeky quasit shovel scroll? My Shovel is bugged and I don't learn the summon skill. I want to learn it without starting a new game. It's honor mode
  2. xhsu
    xhsu
    • premium
    • 0 kudos
    Use the command to add the backpack anytime in the game.
    TemplateAddTo("0813b3e2-07d6-40d0-91d6-f090dd983363", GetHostCharacter(), 1)
    1. CazoLeandro
      CazoLeandro
      • member
      • 0 kudos
      WHERE DO WE USE THIS COMMAND? CHEAT ENGINE? IS THERE EVEN A CONSOLE COMMAND? SRR FOR SCREAMING!
  3. Gr8VKS
    Gr8VKS
    • member
    • 1 kudos
    Does this have the Scroll for Flesh to Gold..?
    I want to try it and I could not get it from the Tax collector.
    Also, not able to find its UUID anywhere,
    1. 8LcY
      8LcY
      • member
      • 0 kudos
      If you're fine with the UID I think it's UNI_TWN_Scroll_FleshToGold, otherwise you might need to reverse-engineer it by using a software to get the UUID of the Signed Trade Visa from your inventory. Or try your luck with the Modders Multitool.

      The reference I have is maybe limited and does not have everything, I have that :

      new entry "OBJ_Scroll_FleshToStone"
      type "Object"
      using "_MagicScroll"
      data "RootTemplate" "a9135751-3a8a-4070-9f3a-11d24d123a3f"
      data "ValueLevel" "12"
      data "Rarity" "VeryRare"
      data "ObjectCategory" "MagicScroll_6"
      data "Priority" "1"

      new entry "UNI_TWN_Scroll_FleshToGold"
      type "Object"
      using "OBJ_Scroll_FleshToStone"
      data "ObjectCategory" ""
    2. Noela
      Noela
      • member
      • 0 kudos
      I found the UUID for the Signed Trade Visa (Flesh to Gold scroll) and thought I'd share.
      Simply paste this line into the BG3SE console to spawn one into the selected character's inventory:

      TemplateAddTo("f2c940ba-3049-49d2-bb90-af9f4830057c", GetHostCharacter(), 1)

      You cannot scribe the scroll with a wizard, but you can add the spell directly to your character by entering:

      AddSpell(GetHostCharacter(), "Target_TWN_Tollhouse_FleshToGold")
  4. USCyberSoldier50
    USCyberSoldier50
    • member
    • 0 kudos
    Does this have every scroll in the game ??
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      It has every scroll that the vanilla game has. If you want scrolls for spells that do not have scrolls in the vanilla, try Secret Scrolls.
    2. USCyberSoldier50
      USCyberSoldier50
      • member
      • 0 kudos
      Cool thanks. !
  5. Nikoyevitch
    Nikoyevitch
    • premium
    • 0 kudos
    can you put a 2nd barrel somewhere else in the game please ?
  6. 8LcY
    8LcY
    • member
    • 0 kudos
    Hi, I downloaded the mod, but noticed that you did not provide an info.json file for manual installation. The thing is, there is a significant number of players who use Mac or Linux as their operating system.

    Right now your mod is the only one that I cannot use due to that :/
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      Hey there. I'm new at modding and fon't know what a info.json is.
    2. 8LcY
      8LcY
      • member
      • 0 kudos
      No worries ! I'm going to detail it a little, for everyone who is interested.
      So to be honest I don't know how it is from the developer perspective. But maybe telling about the user perspective might help ?

      Manual installations, from the user perspective, are super simple really. We juste have to add the PAK file in the mod folder, then edit the modsettings.lsx file. Everything is explained in the BG3 Wiki, in the Installing Mods page. (And I just noticed there is a Creating Mods page too, but it's getting a bit too complicated for me.)

      The info.json file is basically a text file (.txt) but that end with .json instead. It's included in the zip we download next to the PAK file usually. The content is like that :

      {"Mods":[{"Author":"Astralities","Name":"ASTRL Hair Colors","Folder":"ASTRLhaircolors","Version":null,"Description":"Supplemental hair color options for CC.","UUID":"525600ac-ca07-4745-a5bc-0a620975e2f3","Created":"2023-09-23T16:55:39.4890354+03:00","Dependencies":[],"Group":"6ffe7996-0570-436a-83a6-2e4678e5c46b"}],"MD5":"4274b6d3cd020a56ac70becefc12ad2c"}

      To make it clearer while we add it to the modsettings.lsx file we spread it over several lines :

      {"Mods":[{
      "Author":"Astralities",
      "Name":"ASTRL Hair Colors",
      "Folder":"ASTRLhaircolors",
      "Version":null,
      "Description":"Supplemental hair color options for CC.",
      "UUID":"525600ac-ca07-4745-a5bc-0a620975e2f3",
      "Created":"2023-09-23T16:55:39.4890354+03:00",
      "Dependencies":[],
      "Group":"6ffe7996-0570-436a-83a6-2e4678e5c46b"}],
      "MD5":"4274b6d3cd020a56ac70becefc12ad2c"}

      And here we can take Name, Folder, UUID and MD5 to add an entry in the modsettings.lsx file, located in the AppData folder :

      (https://bg3.wiki/wiki/Modding:Installing_mods , at the bottom of the page there is an example)
      <node id="Module">
      <attribute id="UUID" type="FixedString" value="525600ac-ca07-4745-a5bc-0a620975e2f3"/>
      </node>

      <node id="ModuleShortDesc">
      <attribute id="Folder" type="LSString" value="ASTRLhaircolors"/>
      <attribute id="MD5" type="LSString" value="4274b6d3cd020a56ac70becefc12ad2c"/>
      <attribute id="Name" type="LSString" value="ASTRL Hair Colors"/>
      <attribute id="UUID" type="FixedString" value="525600ac-ca07-4745-a5bc-0a620975e2f3"/>
      <attribute id="Version64" type="int64" value=""/>
      </node>

      And that's it. The mod is installed, we don't need any mod manager and we can do it on Windows, Mac and Linux.
  7. Bogdanov89
    Bogdanov89
    • supporter
    • 1 kudos
    Hey thanks for this mod.
    Is it perhaps compatible with "Infinite Scrolls and Scroll Stock" & "Secret Scrolls" mods?
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      Works well with Secret Scrolls, I use it personally. Don't have experience with "Infinite Scrolls and Scroll Stock", but for what I've seen it should be compatible.
  8. Kikyo99
    Kikyo99
    • member
    • 22 kudos
    does this also work with vortex?
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      I don't use vortex so I can't answer that. Perhaps a kind soul could chip in.
    2. coffeepyromaniac
      coffeepyromaniac
      • member
      • 0 kudos
      Just downloaded it via vortex and can confirm, there's now a giant backpack in my tutorial chest. Only tried with a completely new game, but on that it seems to work.
    3. Kikyo99
      Kikyo99
      • member
      • 22 kudos
      Wonderful! Thank you for checking!
  9. macooR
    macooR
    • member
    • 0 kudos
    some scrolls are missing
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      Yeah, I'll be adding more and sorting them by level.
    2. EmperorVukodlak
      EmperorVukodlak
      • premium
      • 2 kudos
      For wizard scrolls it seems to be missing Arcane Gate and Create Undead, also Shield but it'd make since a scroll of a reaction spell doesn't exist.
  10. WackyClean
    WackyClean
    • member
    • 0 kudos
    Is the backpack only in the tutorial chest?
    1. WildWolfx007
      WildWolfx007
      • supporter
      • 7 kudos
      Yes. If you want access at anytime I recomend Tutorial Chest Summoning mod.