Page 1 of 1
I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 1:24 am
by DrSpacebar
Suppose I wanted to make a wall disappear after a set time passes. How would I do that with a levelgen?
Re: I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 4:19 am
by Little_Apple
short answer: you can't.
Re: I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 5:56 am
by raptor
Sadly, walls are not manipulable with levelgens because of some technical difficulties with the code base at the moment.
Re: I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 7:16 am
by bobdaduck
There are various ways to get around it (like making a bunch of testitems and levelgenning them to disappear after a certain amount of time and making it so they can't move in between that time) but doing it with an actual wall is not currently possible.
I can help you with the levelgen aspect of it, if you want to try that route.
Re: I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 11:55 am
by Fordcars
You could just stick a core item, too
Re: I wanna make this Polywall... disappear
Posted:
Sat Aug 24, 2013 5:54 pm
by kaen
Easiest thing is to use a core. Just set the health really high using
- Code:
myCore:setFullHealth(99999)
or something.
Re: I wanna make this Polywall... disappear
Posted:
Tue Sep 10, 2013 12:48 pm
by furbuggy
Can you set a bunch of mines within the core to explode at after a given amount of time? Or put burst items in there with a life to match the amount of desired time?
Maybe that would work best.
Re: I wanna make this Polywall... disappear
Posted:
Tue Sep 10, 2013 5:55 pm
by Quartz
furbuggy wrote:Can you set a bunch of mines within the core to explode at after a given amount of time? Or put burst items in there with a life to match the amount of desired time?
Maybe that would work best.
There is no issue with Cores disappearing. That's easy stuff. However BarrierMakers and PolyWalls cannot be meddled with, for now.