Wanted to mention the following for the few of you out there who are interested in playing around with the console.
After burning out the Melting Furnace used to make the Sussur weapons, you can reignite it with the following commands.
Note that this is the forge's object instance ID, not the template UUID. Your game might not have the same ID as mine.
You could attempt to use CE to search for the string "UNI_FOR_IncompleteMasterwork" and the ID would be after that in memory.
May need to zone into the forge room before that string gets loaded by the game. Not sure.
If anyone tests this out and finds that their forge has the same ID, please let me know.
Code: Select all
local flag = "5682443b-4907-4fe5-acbd-67ef89a35388" --FOR_IncompleteMasterwork_State_FurnaceSecondStage
local object = "UNI_FOR_IncompleteMasterwork_FurnaceWithBark_564ac7ba-c3f9-205f-50e7-ee4476e22602"
local result = SetFlag(flag, object, 0, 1)
if result ~= 1 then
print("command failed")
end
Code: Select all
local object = "UNI_FOR_IncompleteMasterwork_FurnaceWithBark_564ac7ba-c3f9-205f-50e7-ee4476e22602"
SetArgToString(0, object)
SetArgToLong(1, 1)
local result = ExecuteCall("SetCanInteract")
if result ~= 1 then
print("command failed")
end