Jump to content

Recommended Posts

Dear Users,

 

 

I am new to this forum, but have worked with mods for a while.

 

 

I am having trouble creating the eternal torch. I organize all the necessary files like anims, scripts, sounds, etc.

 

 

And yet, it crashes whenever I enable it and hit ok. I have puzzled at this for an hour or so.

 

 

Here is the code in my modmain.lua

local STRINGS = GLOBAL.STRINGSlocal Ingredient = GLOBAL.Ingredientlocal RECIPETABS = GLOBAL.RECIPETABSlocal Recipe = GLOBAL.RecipePrefabFiles = {	"eternaltorch",	"torchfire",}ComponentFiles = {}Assets = {    Asset( "IMAGE", "fx/torchfire.tex" ),	Asset( "ATLAS", "fx/torchfire.xml" ),}function EternalTorch(player)    local recipe_eternaltorch = GLOBAL.Recipe("eternaltorch", {Ingredient("goldnugget", 1), Ingredient("twigs", 1)}, RECIPETABS.LIGHT, {SCIENCE =0} )	recipe_eternaltorch.atlas = "images/eternaltorch.xml"endGLOBAL.STRINGS.NAMES.ETERNALTORCH = "Eternal Torch"GLOBAL.STRINGS.RECIPE_DESC.ETERNALTORCH = "A torch that never burns out."AddSimPostInit(EternalTorch)AddPrefabPostInit("eternaltorch")

I have uploaded the files for further examination. Any help?

 

eternaltorch.zip

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...