Day Pie Posted January 29, 2023 Share Posted January 29, 2023 (edited) As the title says I really need help. Dedicated server starts without my mod. But doesn't with my mod. It worked BEFORE. But after a few changes like stats and adding ONE tag "reader" It completely stopped working! I did check the client_log.txt But it said nothing about my mod at all! (Nothing important at least) It doesn't even erally crash! The server just cannot start at all! Here's my character lua and modmain/modinfo modinfo.lua modmain.lua jacob.lua Edited January 29, 2023 by Day Pie little changes to the character.lua because it had something i didn't want Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/ Share on other sites More sharing options...
Merkyrrie Posted January 30, 2023 Share Posted January 30, 2023 Put "inst:AddTag("reader") up into the common_postinit function rather than outside it Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619555 Share on other sites More sharing options...
Day Pie Posted January 30, 2023 Author Share Posted January 30, 2023 @MerkyrrieDoesn't help the dedicated server. Still crashes the dedicated server. jacob.lua Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619571 Share on other sites More sharing options...
Merkyrrie Posted January 30, 2023 Share Posted January 30, 2023 13 hours ago, Day Pie said: @MerkyrrieDoesn't help the dedicated server. Still crashes the dedicated server. jacob.lua 2.62 kB · 1 download There should be a master_server_log.txt around where the client log is that should have the error on why the server is crashing But also, there's an 'end' hanging out below the 'return MakePlayerCharacter' that's breaking the function there (I'm not sure what the reason for the second common_postinit is down there but if you have a reason for it then sure) Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619625 Share on other sites More sharing options...
Day Pie Posted January 30, 2023 Author Share Posted January 30, 2023 @MerkyrrieOookay i did a whole overhaul and changed from my last save. Like some kind of a rollback. Added new stuff in and same error. "Dedicated server failed to start" I tried disabling the caves and Oh my god it actually crashed the game! here are the files.master_server_log.txt modinfo.lua modmain.lua jacob.lua client_log.txt Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619630 Share on other sites More sharing options...
Merkyrrie Posted January 30, 2023 Share Posted January 30, 2023 12 minutes ago, Day Pie said: @MerkyrrieOookay i did a whole overhaul and changed from my last save. Like some kind of a rollback. Added new stuff in and same error. "Dedicated server failed to start" I tried disabling the caves and Oh my god it actually crashed the game! here are the files.master_server_log.txt modinfo.lua 1.04 kB · 0 downloads modmain.lua 3.21 kB · 0 downloads jacob.lua 2.53 kB · 0 downloads client_log.txt 232.43 kB · 0 downloads From the server log, all the RemapSoundEvent but the first one have a lowercase e in 'event' which makes it an entirely different variable to the one the game is expecting. Changing each to RemapSoundEvent should fix that particular error. I don't see any other syntax errors myself so hopefully that should be enough to let the server finally start without crashing Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619635 Share on other sites More sharing options...
Day Pie Posted January 31, 2023 Author Share Posted January 31, 2023 @MerkyrrieStill doesn't work! Man.. What the heck is wrong with my mod?! client_log.txt master_server_log.txt Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619697 Share on other sites More sharing options...
Day Pie Posted February 1, 2023 Author Share Posted February 1, 2023 (edited) Could not find an asset matching sound/jacob.fev in any of the search paths. Nevermind.. Something is wrong with the sound files themselves client_log.txt master_server_log.txt Edited February 1, 2023 by Day Pie Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619780 Share on other sites More sharing options...
Chesed Posted February 1, 2023 Share Posted February 1, 2023 (edited) There isn't a copy of your mod to look at your file structure, but it just seems like your .fev file is missing, misnamed, or in the wrong place. Make sure you have a folder named "sound" in the same folder as your anim/bigportrait/scripts/etc. folders, and make sure that folder contains both a "jacob.fev" and a "jacob.fsb". With just the crash error message, that's all I can really hazard a guess at. Edited February 1, 2023 by Chesed Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619810 Share on other sites More sharing options...
Day Pie Posted February 1, 2023 Author Share Posted February 1, 2023 "sounds" or just "sound"..? I have my fev and fsb there. is it really cause of ONE GOD DAMN "S"!? Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619825 Share on other sites More sharing options...
Chesed Posted February 1, 2023 Share Posted February 1, 2023 (edited) Has to be "sound", no extra s. If you put "sounds" instead then unfortunately yup that's the problem. You have to be super careful to make sure everything is named exactly what the modmain is looking for, or else it won't find it. It's a very easy mistake to make accidentally. On the bright side, at least it's an easy fix. Edited February 1, 2023 by Chesed Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619845 Share on other sites More sharing options...
Day Pie Posted February 1, 2023 Author Share Posted February 1, 2023 Alright everythings fixed! Deep thanks to yall! @Chesed and @Merkyrrie! It finally works! I am so relieved thank you all. 7 minutes ago, Chesed said: Has to be "sound", no extra s. If you put "sounds" instead then unfortunately yup that's the problem. You have to be super careful to make sure everything is named exactly what the modmain is looking for, or else it won't find it. It's a very easy mistake to make accidentally. On the bright side, at least it's an easy fix. It actually doesnt matter much. all you need is to specify.... using "inst.talker_path_override = "character/" a slash in stead of .fev Link to comment https://forums.kleientertainment.com/forums/topic/145830-need-help-dedicated-server-wont-start-because-of-my-custom-character/#findComment-1619847 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