Dogmeat8990 Posted January 27, 2021 Share Posted January 27, 2021 I been working on a character mod. when I load the mod there invisible I need some help A video showing my problem: 2021-01-26 19-50-19.mkv Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/ Share on other sites More sharing options...
-LukaS- Posted January 27, 2021 Share Posted January 27, 2021 Make sure you have your assets loaded in the mod and your character and make sure there aren't any typos. Also check if the bank and build are correct. 1 Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422124 Share on other sites More sharing options...
FurryEskimo Posted January 28, 2021 Share Posted January 28, 2021 @Dogmeat8990 By any chance, are you using this mod tutorial: I used it and the player's animation file was a mess.. I had to rename the template or something. Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422405 Share on other sites More sharing options...
Dogmeat8990 Posted January 28, 2021 Author Share Posted January 28, 2021 Oh Sorry FurryEskiom, I fix my problem but now I'm have a spritter problem my ghost cat ears are floating have any ideas to fix it? Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422410 Share on other sites More sharing options...
FurryEskimo Posted January 28, 2021 Share Posted January 28, 2021 @Dogmeat8990 Glad you fixed it! I'm not very familiar with Spriter animations, but if I had to guess, you added the ear textures, and positioned them in Spriter, but didn't move the little orange dot for the ear textures that determines where the textures will actually appear once you're playing the game. Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422413 Share on other sites More sharing options...
Dogmeat8990 Posted January 28, 2021 Author Share Posted January 28, 2021 so that fix one ear thanks for the help just one more question how do you make a item have no condition limit? Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422416 Share on other sites More sharing options...
FurryEskimo Posted January 28, 2021 Share Posted January 28, 2021 @Dogmeat8990 What’s a “condition limit”? PS- “@“ing me will let me know when you respond to me. ^-^ Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1422422 Share on other sites More sharing options...
chrysomelidae Posted January 30, 2021 Share Posted January 30, 2021 (edited) @FurryEskimo i guess they mean to say item durability? Edited January 30, 2021 by chrysomelidae Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1423555 Share on other sites More sharing options...
FurryEskimo Posted January 30, 2021 Share Posted January 30, 2021 (edited) @chrysomelidae Yes! I've had a decent amount of experience with item durability! Here's the basic code you need: --This goes in a function. if inst.components.finiteuses then inst.components.finiteuses:Use(###) --Number of uses consumed. This value can be positive, negative, or a non-whole number. end --This goes in,, idk, mine says "local function ice_den() --Used to code individual tents(?)" inst:AddComponent("finiteuses") inst.components.finiteuses:SetMaxUses(###) --Set a number that will be used to display the item's percentage value. This has nothing to do with the number of uses actually available! inst.components.finiteuses:SetUses(###) --Set number of uses available. inst.components.finiteuses:SetOnFinished(inst.Remove) Edited January 30, 2021 by FurryEskimo Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1423561 Share on other sites More sharing options...
Dogmeat8990 Posted February 7, 2021 Author Share Posted February 7, 2021 thank you 1 Link to comment https://forums.kleientertainment.com/forums/topic/126479-custom-character-is-invisible/#findComment-1426428 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