Jump to content

Recommended Posts

Hi, I've been working on a custom character for a few days. I didn't want anything very fancy, the most complicated perk she has is a custom recipe for blowdarts and damage modifiers for ranged weapons. I'm not sure if that's the problem. The server is created fine, but it won't launch and it doesn't crash.

I'll attach the client_log.txt and the mod file. Thank you in advance!

Truffle-DST.rar client_log.txt

I'm not sure what exactly you may want, as I can't really pinpoint which error might it be, so I've included the whole cluster server folder. Sorry! @penguin0616

Cluster_3.rar

Edited by Ivanotus

So, testing out I found out that, in fact, the problem was caused from this piece of code:

Recipe("blowdart_pipe", {Ingredient("cutreeds", 1), Ingredient("boneshard", 1) Ingredient("cutgrass", 5}, RECIPETABS.REFINE, {SCIENCE = 0})
	STRINGS.RECIPE_DESC.BLOWDART_PIPE = "As Elven as a dart can get."

What could be wrong with this? It should work as a recipe modifier for the blowdart.

Edited by Ivanotus

Yeah, that's the line I mentioned in my previous response, the one with the recipe. I guess I'll have to look for another alternative? I'm not sure how to make my own custom perks. My coding skills are limited.

For one thing, you shouldn't be loading in your Recipes in a prefab. Supposed to do them in modmain.

Also, your error in question is 

Ingredient("cutgrass", 5} -- you put a }, not a )

-- should be

Ingredient("cutgrass", 5)

 

  • Like 1

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...