item revision question
Danacm
Member Posts: 951
Hi
I used that mod, how can i edit it to not modify some items what i dont want to ?
I used that mod, how can i edit it to not modify some items what i dont want to ?
0
Comments
I think it can works with spell revisions too.
I've searched through all the filed in Item Revisions, but can't seem to find the core component, which directs items to be overridden. What name does it have, exactly?
item_rev/components/main_component.tpa in turn has the following text:
// install items by looping through our array
COPY - ~item_rev/components/main/items.2da~ ~item_rev/components/main~
READ_2DA_ENTRIES_NOW ~r2en_items~ 17
blah blah blah
That file is the one that has the table of items, and you'd comment out item lines in it.
As for editing the items.2da, I presume // works to comment out an entire line, or by the code of main_component.tpa, you should be able to put a 0 in the BG2EE (or whatever game) column, which tells the mod whether that item "exists" for that game and should be installed or ignored. Personally, I'd go with the former, it is a lot more visible to see that an item has been commented out by choice.
It's a bit more haphazard than SR, which is almost entirely contained in spell_rev\components\main_component.tpa. Because spells are just spells, and items have many different types and many rules and rule options.