I want to make a PROP_INDESTRUCTIBLE like in jacob's Mod... I want to make an indestructable element but i made an exact copy of DMND (making the identifier DEFAULT_PT_DMND2 etc. etc. ...) but its very easily destroyable... not sure what to do
I'm Really new to this, so i don't want to make a New PROP... lol. Is there a way to make an indestructable element without making a PROP_INDESTRUCTABLE?
Yes, do what current elements do. Just make them not melt/get destroyed by pressure and acid, then add it to the list of elements to not to be deleted in...
AMTR.cpp
SING.cpp
VIRS.cpp
DEST.cpp
BOMB.cpp
etc... so it won't be destroyed by those elements. Just add && PT_[your element name] or in some cases || instead of &&, just use the examples provided in those elements, for example DMND should be something like && PT_DMND && PT_CLNE or something...
@Lord_Bowserinator (View Post)
Ohhhhhhh... yeah i forgot to do that... Thank you! lol