Catnipbuddy Posted February 26, 2015 Share Posted February 26, 2015 Hello, I am in need of a programmer for my character mod. I currently have very basic skills, but pretty advanced art skills in mod making and need help with a couple of things...----------------------------------------------------------------------------------------------------------------------------------- One thing I am currently having trouble with, is that my character shows up completely invisible when the game loads. I have spent a few hours trying to figure out what was happening with no luck. I will also need help creating a few new items, adding abilities such as a transformable "alternate personality" and am currently planning for more to come in the future. If these requests seem too much for you, only the important things, crashing, invisible player I will need help with. Thanks. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/ Share on other sites More sharing options...
WalrusMan Posted February 26, 2015 Share Posted February 26, 2015 Try deleting all the rest of the mods you have. Delete the zipped file in the anim folder. Then start the auto compiler. If it worked, a new zip file should appear making your character visible. It worked for me. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616873 Share on other sites More sharing options...
Kzisor Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, if you provided the error message located in your log.txt file most people would be willing to help you out. Without the error or log.txt file we are only truly guessing. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616874 Share on other sites More sharing options...
WalrusMan Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, if you provided the error message located in your log.txt file most people would be willing to help you out. Without the error or log.txt file we are only truly guessing.Well, the same exact thing happened to me so I would assume the same exact thing would solve this problem as well. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616875 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 @Catnipbuddy, if you provided the error message located in your log.txt file most people would be willing to help you out. Without the error or log.txt file we are only truly guessing. I would if I could find it. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616877 Share on other sites More sharing options...
Kzisor Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, if your on Windows check your User/Documents/Klei/DontStarve folder. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616881 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 @Catnipbuddy, if your on Windows check your User/Documents/Klei/DontStarve folder. Well, I fixed the crashing, now to see if I fixed the invisible character.Edit: Nope. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616885 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 Checking the log again after loading the world, I found this "Could not find anim build jacob"I would need someone to look into my current code to see what I did wrong, because all the .texs are in the correct location, so most likely it is user error. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616887 Share on other sites More sharing options...
Kzisor Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, you might need to load them via Assets in your modmain.lua file. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616889 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 @Catnipbuddy, you might need to load them via Assets in your modmain.lua file. I think I tried that already, ill post what I currently have in my modmain file.PrefabFiles = {"jacob",} Assets = { Asset( "IMAGE", "images/saveslot_portraits/jacob.tex" ), Asset( "ATLAS", "images/saveslot_portraits/jacob.xml" ), Asset( "IMAGE", "images/selectscreen_portraits/jacob.tex" ), Asset( "ATLAS", "images/selectscreen_portraits/jacob.xml" ), Asset( "IMAGE", "images/selectscreen_portraits/jacob_silho.tex" ), Asset( "ATLAS", "images/selectscreen_portraits/jacob_silho.xml" ), Asset( "IMAGE", "bigportraits/jacob.tex" ), Asset( "ATLAS", "bigportraits/jacob.xml" ), Asset( "IMAGE", "images/map_icons/jacob.tex" ),Asset( "ATLAS", "images/map_icons/jacob.xml" ), } local require = GLOBAL.require GLOBAL.STRINGS.CHARACTER_TITLES.jacob = "Jacob"GLOBAL.STRINGS.CHARACTER_NAMES.jacob = "The Animator"GLOBAL.STRINGS.CHARACTER_DESCRIPTIONS.jacob = "*Scared of the dark\n*Very fast\n*Has a fairly large apetite\n*Has an instrument"GLOBAL.STRINGS.CHARACTER_QUOTES.jacob = "\"Give me back the light!\"" GLOBAL.STRINGS.CHARACTERS.JACOB = require "speech_jacob"GLOBAL.STRINGS.CHARACTERS.JACOB.DESCRIBE = {} table.insert(GLOBAL.CHARACTER_GENDERS.MALE, "jacob") AddModCharacter("jacob") Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616894 Share on other sites More sharing options...
WalrusMan Posted February 26, 2015 Share Posted February 26, 2015 Try deleting all the rest of the mods you have. Delete the zipped file in the anim folder. Then start the auto compiler. If it worked, a new zip file should appear making your character visible. It worked for me.Notice me... Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616899 Share on other sites More sharing options...
Kzisor Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, post your jacob.lua prefab file. Also you should double check to make sure you are loading the anim/jacob.zip into the assets which you aren't. If you're doing this in jacob.lua prefab file then try doing what WalrusMan says as it should reconfigure the build. However, at this moment in time you aren't loading the anim/jacob.zip file into the Assets area. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616904 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 @Catnipbuddy, post your jacob.lua prefab file. Also you should double check to make sure you are loading the anim/jacob.zip into the assets which you aren't. If you're doing this in jacob.lua prefab file then try doing what WalrusMan says as it should reconfigure the build. However, at this moment in time you aren't loading the anim/jacob.zip file into the Assets area.Ah, so what would I add to the modmain file then?Heres the jacob.lua.local MakePlayerCharacter = require "prefabs/player_common"local assets = {Asset( "ANIM", "anim/player_basic.zip" ),Asset( "ANIM", "anim/player_idles_shiver.zip" ),Asset( "ANIM", "anim/player_actions.zip" ),Asset( "ANIM", "anim/player_actions_axe.zip" ),Asset( "ANIM", "anim/player_actions_pickaxe.zip" ),Asset( "ANIM", "anim/player_actions_shovel.zip" ),Asset( "ANIM", "anim/player_actions_blowdart.zip" ),Asset( "ANIM", "anim/player_actions_eat.zip" ),Asset( "ANIM", "anim/player_actions_item.zip" ),Asset( "ANIM", "anim/player_actions_uniqueitem.zip" ),Asset( "ANIM", "anim/player_actions_bugnet.zip" ),Asset( "ANIM", "anim/player_actions_fishing.zip" ),Asset( "ANIM", "anim/player_actions_boomerang.zip" ),Asset( "ANIM", "anim/player_bush_hat.zip" ),Asset( "ANIM", "anim/player_attacks.zip" ),Asset( "ANIM", "anim/player_idles.zip" ),Asset( "ANIM", "anim/player_rebirth.zip" ),Asset( "ANIM", "anim/player_jump.zip" ),Asset( "ANIM", "anim/player_amulet_resurrect.zip" ),Asset( "ANIM", "anim/player_teleport.zip" ),Asset( "ANIM", "anim/wilson_fx.zip" ),Asset( "ANIM", "anim/player_one_man_band.zip" ),Asset( "ANIM", "anim/shadow_hands.zip" ),Asset( "SOUND", "sound/sfx.fsb" ),Asset( "SOUND", "sound/wilson.fsb" ),Asset( "ANIM", "anim/beard.zip" ),Asset( "ANIM", "anim/jacob.zip" ),}local prefabs = {}local fn = function(inst)-- choose which sounds this character will playinst.soundsname = "wilson"-- a minimap icon must be specifiedinst.MiniMapEntity:SetIcon( "jacob.png" )inst.components.hunger:SetRate(TUNING.WILSON_HUNGER_RATE * 1.3)inst.components.combat.damagemultiplier = 1.1inst.components.locomotor.walkspeed = 7inst.components.locomotor.runspeed = 7.9inst.components.health:SetMaxHealth(105)inst.components.hunger:SetMax(240)inst.components.sanity:SetMax(170)STRINGS.CHARACTERS.JACOB = require "speech_jacob"endreturn MakePlayerCharacter("jacob", prefabs, assets, fn) Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616905 Share on other sites More sharing options...
Kzisor Posted February 26, 2015 Share Posted February 26, 2015 @Catnipbuddy, at this moment in time I'm going to refer you do what WalrusMan stated to do, because you are loading anim/jacob.zip and it seems as though it might be corrupted. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616912 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 Try deleting all the rest of the mods you have. Delete the zipped file in the anim folder. Then start the auto compiler. If it worked, a new zip file should appear making your character visible. It worked for me.Auto compiler? Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616913 Share on other sites More sharing options...
WalrusMan Posted February 26, 2015 Share Posted February 26, 2015 Auto compiler?Download Don't Starve Mod Tools off of steamOnce you have just launch Don't Starve Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616914 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 Download Don't Starve Mod Tools off of steamOnce you have just launch Don't StarveI have them installed already, but I dont see it. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616917 Share on other sites More sharing options...
WalrusMan Posted February 26, 2015 Share Posted February 26, 2015 I have them installed already, but I dont see it.When you launch the game, a command prompt should show. Wait until it to close by itself. Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616919 Share on other sites More sharing options...
Catnipbuddy Posted February 26, 2015 Author Share Posted February 26, 2015 When you launch the game, a command prompt should show. Wait until it to close by itself.Now when I start, it says that my mod is installed, then crashes when I hit "I understand" Link to comment https://forums.kleientertainment.com/forums/topic/51464-need-advanced-programmer/#findComment-616931 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.
Please be aware that the content of this thread may be outdated and no longer applicable.