This code is meant to make the element SPCR to conduct like inst when the temperature is extremely low it's in my sprk.c file here it is: http://pastebin.com/zhmLyx0Q
@PizzaPlatypus Does the life decrease after it's sparked once? If not, you need to define it to do that, I think. It's somewhere in powder.h. I'm not sure, I haven't done any modding for about 3 weeks now...
Using flood parts to conduct will require some modification to to flood function, you can see where to make it conduct here: // fill span for (x=x1; x<=x2; x++)<br/> { if (cm==PT_INST&&co==PT_SPRK) { if (create_part(-1,x, y, fullc)==-1) return 0; } else if (!create_parts(x, y, 0, 0, fullc, flags)) return 0; }
just add another if and replace the INST with SPCR, also, you can ignore the massive part of INST below that, which is for wire crossings, if you want those, you may have to copy that as well.