Jump to content

Recommended Posts

Hello,

I'm using a wonderful mod called "Deluxe Campfires 2.11" that has a campfire called "Star of Ariandel" that has a bit of dialogue for how strong/low the fire is. It's pretty funny, but today I created a server with Caves enabled and the campfire doesn't show the text. It talks, but no text is displayed. How can I fix it without the mod developer? I think he dropped the mod support.

go into the lua file from both stars (workshop-444235588\scripts\prefabs) and search for:
inst:AddComponent("talker")

For the heat star you have to copy the lines
 

    inst:AddComponent("talker")
    inst.components.talker.colour = Vector3(215/255, 48/255, 3/255)
    inst.components.talker.font = TALKINGFONT
    inst.components.talker.fontsize = 28
    inst.components.talker.offset = Vector3(0,-520,0)

remove them.
and paste them directly over the code

 

    if not TheWorld.ismastersim then
        return inst
    end

    inst.entity:SetPristine()


It also would be good to still report the issue at steam and maybe link to this post for the fix.

Edited by Serpens

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...