xavier2119 Posted December 4, 2013 Share Posted December 4, 2013 So I get into game to test out a new mod that I am working on and I have the icon show up on the side of the Fight tab that shows me what I need for my item. I get all the materials and build it, and after it takes my items (as in it would successfully craft it) Wilson says "I can't do that." Any help would be amazing and I greatly appreciate it. This is also my first mod and I would love to add other things to it as well. If you need to see code just let me know, im not sure where this error would happen and I will keep a close eye on this thread to fix this issue. Thanks for your help in advance --Troubled Noob Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/ Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 The best way to get help in this forum is to upload your mod, knowing the issue won't help us much without the code causing it Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383723 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 (edited) Well, I don't wanna post everything if i didnt need it. Didnt wanna confuse everyone lol I just dont know what file it would be under. Edited December 4, 2013 by xavier2119 Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383729 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 (edited) Just upload the mod, there are plenty of people here willing to go through it to help others with things Edited December 4, 2013 by Blazingice26 Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383733 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Alright this is my modmain.lua file -----------local STRINGS = GLOBAL.STRINGSlocal RECIPETABS = GLOBAL.RECIPETABSlocal Recipe = GLOBAL.Recipelocal Ingredient = GLOBAL.Ingredientlocal TECH = GLOBAL.TECHGLOBAL.CHEATS_ENABLED = trueGLOBAL.require( 'debugkeys' ) GLOBAL.STRINGS.NAMES.DBSCYTHE = "Double-Bladed Scythe"GLOBAL.STRINGS.RECIPE_DESC.DBSCYTHE = "Careful... its a double edged sword?"GLOBAL.STRINGS.CHARACTERS.GENERIC.DESCRIBE.DBSCYTHE = "I am responsible for death!.... Oh wait." PrefabFiles = {"dbscythe",} Assets = {Asset("IMAGE", "images/inventoryimages/dbscythe.tex"),} local dbscythe = GLOBAL.Recipe("dbscythe", {Ingredient("walrus_tusk",2),Ingredient("rope",2),Ingredient("twigs",4), Ingredient("nightmarefuel", 1)}, RECIPETABS.WAR, TECH.SCIENCE_ONE)dbscythe.atlas = "images/inventoryimages/dbscythe.xml" -------------------------- this is the scripts/prefabs/dbscythe.lua local assets={--Asset("ANIM", "anim/dbscythe.zip"),--Asset("ANIM", "anim/swap_dbscythe.zip"),Asset("ANIM", "images/inventoryimages/dbscythe.tex"),Asset("ANIM", "images/inventoryimages/dbscythe.xml"),} local function onfinished( inst )inst:Remove()end local function onequip(inst, owner)owner.AnimState:OverrideSymbol("swap_object", "swap_dbscythe", "swap_nightmaresword")owner.AnimState:Show("ARM_carry")owner.AnimState:Hide("ARM_normal") end local function onunequip( ints, owner )owner.AnimState:Show("ARM_carry")owner.AnimState:Hide("ARM_normal")end local function onattack(inst, attacker, target) end local function fn(Sim)local inst = CreateEntity()local trans = inst.entity:AddTransform()local anim = inst.entity:AddAnimState() MakeInventoryPhysics(inst) inst.AnimState:SetBank("nightmaresword") inst.AnimState:SetBuild("dbscythe") inst.AnimState:PlayAnimation("idle") inst.AnimState:SetMultiColour(1,1,1,1) inst:AddTag("sharp") inst:AddTag("shadow") inst:AddComponent("weapon") inst.components.weapon:SetDamage(80) inst:AddComponent("finiteuses")inst.components.finiteuses:SetMaxUses(200)inst.components.finiteuses:SetUses(150) inst.components.finiteuses:SetOnFinished( onfinished ) inst:AddComponent("inspectable") inst:AddComponent("inventoryitem")inst.components.inventoryitem.atlasname = "images/inventoryimages/dbscythe.xml" inst:AddComponent("equippable")inst.components.equippable.walkspeedmult = 2.00inst.components.equippable:SetOnEquip( onequip )inst.components.equippable:SetOnUnequip( onunequip ) return instend -------- Hopefully this is what you need. Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383738 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 (edited) Here, try replacing Assets = {Asset("IMAGE", "images/inventoryimages/dbscythe.tex"),} local dbscythe = GLOBAL.Recipe("dbscythe", {Ingredient("walrus_tusk",2),Ingredient("rope",2),Ingredient("twigs",4), Ingredient("nightmarefuel", 1)}, RECIPETABS.WAR, TECH.SCIENCE_ONE)dbscythe.atlas = "images/inventoryimages/dbscythe.xml"With this, also i must ask, what is inst:AddTag("shadow") im not entirely familiar with all the tags, but what exactly does "shadow" do?local function load()--[local dbscythe = GLOBAL.Recipe("dbscythe", { Ingredient("walrustusk", 2), Ingredient("rope", 2), Ingredient("twigs", 4), Ingredient("nightmarefuel", 1), }, RECIPETABS.WAR, {SCIENCE = 1})dbscythe.atlas = "images/inventoryimages/dbscythe.xml" TheSim:LoadPrefabs({"dbscythe"})local dbscythe = GLOBAL.GetRecipe("dbscythe")end Edited December 4, 2013 by Blazingice26 Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383751 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Alright I did that now and my item won't show up in game anymore, is there something else I have to change with that? Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383758 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 Alright I did that now and my item won't show up in game anymore, is there something else I have to change with that?It would greatly help if you uploaded the zip of the mod, there may be some image files missing, or maybe i did some of the code wrong, its hard to tell when you only have 1 or 2 bits of the mod :/ Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383767 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 (edited) Uh well it won't let me upload a zip file of it. "You aren't permitted to upload this kind of file" buhhh Edited December 4, 2013 by xavier2119 Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383772 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 Uh well it won't let me upload a zip file of it. "You aren't permitted to upload this kind of file" buhhhYou sure you're not trying to upload a .rar file? i might have heard something about certain things being restricted until you have a amount of forum posts, uploading zips might be one of them, if that is the case try uploading it to mediafire and posting the link here. or sending me a pm with the link Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383777 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Ahhhhh there we go, was using a .rar file, it let me use the zip file tho. Sorry about that x.x Don't Starve Mod.zip Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383780 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 Alright, i'll look through it and see what i can do Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383782 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Awesome thank you so much. I will put you in the credits when it is all said and done, thank you for your help :3333 Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383784 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 This is untested but it may work,Don't Starve Mod.zip Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383824 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Alright so everything was great until I went to craft it and after I crafted it the game crashed. Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383828 Share on other sites More sharing options...
xavier2119 Posted December 4, 2013 Author Share Posted December 4, 2013 Ahhh I fixed it myself! thank you so much for your help!!!! :DDDDD Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383832 Share on other sites More sharing options...
Rosten Posted December 4, 2013 Share Posted December 4, 2013 Ahhh I fixed it myself! thank you so much for your help!!!! :DDDDDNo problem, i'm glad it worked out for you, can't wait to use the mod when its released Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-383833 Share on other sites More sharing options...
xavier2119 Posted December 5, 2013 Author Share Posted December 5, 2013 Well here it is man I have no idea what to do with this, think its something to do with the anim folder is what my guess would be.Don't Starve Mod.zip Link to comment https://forums.kleientertainment.com/forums/topic/30194-help-modding-i-cant-do-that/#findComment-384167 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