I have a simple mod that adds a element called THGN (Thermal generator) that makes sparks everytime its temp is above 100C. And i want to publish it to autorun.lua
Btw source code:
local elemid=elements.allocate("WILLMOD","THGN")
elements.property(elemid,"Name","THGN")
elements.property(elemid,"MenuSection",9)
elements.property(elemid,"MenuVisible",1)
elements.property(elemid,"Weight",85)
--elements.property(elemid,"Gravity",0.1)
elements.property(elemid,"Color",0xFF646464)
elements.property(elemid,"Properties",0x00004)
elements.property(elemid,"Advection",0.7)
elements.property(elemid,"AirLoss",0.96)
elements.property(elemid,"Loss",0.80)
elements.property(elemid,"Falldown",1)
elements.property(elemid,"Collision",0)
elements.property(elemid,"AirDrag",0.02)
elements.property(elemid,"Description","Thermal Generator. Generates sparks when temp is above 100C.")