Starbound

Starbound

Weapon Reinforcer
The Barname Bug
So I have a major problem with this mod: Its unuseable. You can put a weapon into the box, but all that will come up is a copper bar labled Bar Name, and it will say 9%. You can upgrade it. You can do anything. And from what I see, the author of this mod has abondoned it. So unless they see it, has anyone found a work around?
< >
Showing 1-5 of 5 comments
Miracole 22 Mar, 2017 @ 1:31pm 
Sorry bud, everyone seem to have this problem and I don't think it's not going to be fixed because of no responses from the dev
Raymond 10 Jun, 2017 @ 11:41am 
so.. If you know how to unpack mods, this seems to be fixable by commenting out a line in WR.lua. If this does not ring a bell it may be hard to explain.

There is a tprint function which throws an error on line 268 (printing debug info about a weapon). Commenting this seems to fix it (I could upgrade a starter sword upto Iron).

-- debug function, prints table given
function tprint (tbl, indent)
--debbuging function

if not indent then indent = 0 end
for k, v in pairs(tbl) do
formatting = string.rep(" ", indent) .. k .. ": "
if type(v) == "table" then
sb.logInfo(formatting)
tprint(v, indent+1)
elseif type(v) == 'boolean' then
sb.logInfo(formatting .. tostring(v))
else
-- sb.logInfo(formatting .. v)/i]
end
end
end[/quote]

Check the quote for the line to comment (use -- to do that).
Last edited by Raymond; 10 Jun, 2017 @ 12:52pm
Sentient Mediocrity 13 Jun, 2017 @ 12:13pm 
So, I've never specifically done what you mentioned before and I want to make sure I'm doing it correctly. I would go find the mod in the steam/game files, then I would open up the file, and I would paste that entire message after line 268? Is that how I could fix this bug?
TBS AlexDK 12 Jul, 2017 @ 1:13pm 
It works fine for me
JustJinxed 13 Nov, 2017 @ 9:49pm 
Easier fix than editing.. someone put up a quick fix suplement addon for Weapon Reinforcer
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1111363944

Still keep your original weapon reinforcer, and just sub to this as well. Just until our fair author makes it back from the coding blackhole. <3
< >
Showing 1-5 of 5 comments
Per page: 1530 50