Regrowth-Stuff
Regrowth-Stuff copied to clipboard
Another Side Another Story, Broken
I have updated to 9.0. I am having the a completion issue with Another side another story, after throwing my lexica through portal it says that is has the elven knowledge but quest book does not recognise this.
I'm in the same situation and having the same issue as well. Was able to get around it with HQM edit though.
Ditto. 0.9.1 and still broken. I tried to make a new Lexica Botania and no dice. I can upgrade it in the portal fine but HQM simply will not recognize I have the book. I've tried it with a Lexica both in and out of the binder just in case.
Found` a patch for it on Devco Servers, made a Minetweaker script.
I am sure phoenix already knows whats wrong, but for everyone else:
In the Botania R1.8 247 Update, (The current version running on REG is R1.8 248), the NBT data for the Lexicon was changed to
<Botania:lexicon>.withTag({"knowledge.alfheim":1 as byte, forcedMessage: "botania.entry.elfMessage"})
What the quest wants is:
<Botania:lexicon>.withTag({"knowledge.alfheim":1 as byte, forcedMessage: "elfMessage"})
Just ran into this exact same bug last night on my server :/
@axle2005 can you post a link to a gist/pastebin/etc of your minetweaker script?
@axle2005 nm I found it in the Regrowth thread on the FtB forums.
Link for anyone else who comes this way: http://forum.feed-the-beast.com/threads/1-7-10-regrowth-a-wip-hqm-pack-now-listed.57184/page-765#post-1575102
Any word on this getting fixed? I've tried the script solution as well as the OP HQM Book solution and neither work. Basically stuck until this gets fixed.
@MokahTGS Create a file in your server instance's minetweaker scripts
directory - name it something like regrowth_bugfix_issue_143.zs
or whatever - with the following contents:
# (temporary?) fix for bug in Regrowth v0.9.1
# https://github.com/thephoenixlodge/Regrowth-Stuff/issues/143
val mbook = <minecraft:book>;
var book = <Botania:lexicon>;
var book2 = book.withTag({"knowledge.alfheim":1 as byte, forcedMessage: "elfMessage"});
mods.botania.ElvenTrade.addRecipe(book.withTag({"knowledge.alfheim":1 as byte, forcedMessage: "elfMessage"}), [mbook]);
Then restart the server (or, if you have permissions on the server, /minetweaker reload
from in game might work too). After doing all this you should be able to toss a vanilla book into the Elven portal and get back an Elven Lexica Botania that HQM will recognize for the affected quest. Note that the script doesn't change the existing behavior (where tossing in a Lexica Botania returns an Elven Lexica Botania).
Ug...I did this, and it isn't working. To be clear, I followed your instructions to the letter, and its just not working.
I was able to fix the issue by going into HQM Edit mode and changing the quest from "Precise Detection" to "Fuzzy Detection"
Probably not the best way to do things but I can move forward now. Hopefully I didn't mess things up.