Ivanotus Posted October 5, 2020 Share Posted October 5, 2020 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 Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/ Share on other sites More sharing options...
penguin0616 Posted October 5, 2020 Share Posted October 5, 2020 @Ivanotus If the server isn't launching, you need to provide the server log as well. 1 Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1377257 Share on other sites More sharing options...
Ivanotus Posted October 5, 2020 Author Share Posted October 5, 2020 (edited) 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 October 5, 2020 by Ivanotus Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1377276 Share on other sites More sharing options...
Ivanotus Posted October 6, 2020 Author Share Posted October 6, 2020 (edited) 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 October 6, 2020 by Ivanotus Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1377379 Share on other sites More sharing options...
penguin0616 Posted October 6, 2020 Share Posted October 6, 2020 Looks like there's a error with "workshop-2248988927" causing the crash in the truffle prefab on line 85. 1 Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1377514 Share on other sites More sharing options...
Ivanotus Posted October 6, 2020 Author Share Posted October 6, 2020 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. Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1377548 Share on other sites More sharing options...
penguin0616 Posted October 9, 2020 Share Posted October 9, 2020 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) 1 Link to comment https://forums.kleientertainment.com/forums/topic/122251-server-not-launching-when-trying-to-playtest-custom-character/#findComment-1378374 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now