thanks a lot man, but not sure why, nothing is happening, door wont open. Do I need to place some invisible platform under pushable_triggers or something like that ? is this script working for you ?Isaac wrote:Place this in a script and connect all three plates.Drakkan wrote:guys pls help with script, I need door1 to be opened when three pushable_floor_triggers (called trigger1, trigger2, trigger3) have pushable_block (called block1, block2, block3) on them. I tried to play with counters, but there is only activation by item, not by object :/
Also there should be some plate(plate1), which when activated, will teleport block1-3 to its original position (reset). Thanks for any helpCode: Select all
function checkBlocks() local plate = { {trigger1.x, trigger1.y}, {trigger2.x, trigger2.y}, {trigger3.x, trigger3.y} } local block = { {block1.x, block1.y}, {block2.x, block2.y}, {block3.x, block3.y} } for z = 1, 3 do for w = 1,#plate do if plate[z][w] ~= block[z][w] then return end end end door1.door:open() end
Push Block problem ~sort of...
Re: Push Block problem ~sort of...
Re: Push Block problem ~sort of...
It's working for me... You need three blocks and three trigger plates... with the names you listed. Each plate needs an onActivate connection to the script.Drakkan wrote:thanks a lot man, but not sure why, nothing is happening, door wont open. Do I need to place some invisible platform under pushable_triggers or something like that ? is this script working for you ?Isaac wrote:Place this in a script and connect all three plates.Drakkan wrote:guys pls help with script, I need door1 to be opened when three pushable_floor_triggers (called trigger1, trigger2, trigger3) have pushable_block (called block1, block2, block3) on them. I tried to play with counters, but there is only activation by item, not by object :/
Also there should be some plate(plate1), which when activated, will teleport block1-3 to its original position (reset). Thanks for any helpCode: Select all
function checkBlocks() local plate = { {trigger1.x, trigger1.y}, {trigger2.x, trigger2.y}, {trigger3.x, trigger3.y} } local block = { {block1.x, block1.y}, {block2.x, block2.y}, {block3.x, block3.y} } for z = 1, 3 do for w = 1,#plate do if plate[z][w] ~= block[z][w] then return end end end door1.door:open() end
https://www.dropbox.com/s/wa78wxmxynf7v ... s.avi?dl=0
Re: Push Block problem ~sort of...
found the problem. Script is written that block 1 need to be on trigger1, block2 on trigger2 and block3 on trigger3. Actually what I need is just when all blocks are placed on triggers (no matter on numbers) door will be opened.
Re: Push Block problem ~sort of...
Aha... that was the deliberate feature of the script, and why it was written that way. 
*I misunderstood your earlier post as ~that~ being the challenge that needed scripting.
___________
There is another Push-Block problem; (technically it's a feature? It's worked around in the game, so it's surely known). Push-Blocks ignore collisions with doors... This ruins the option to use the mine-spear gates in push-block puzzles.
*This would be the first Glögg feature that I'd ask for ~after gravity support for push-blocks, of course; (with descend-able ladders coming in third).

*I misunderstood your earlier post as ~that~ being the challenge that needed scripting.
___________
There is another Push-Block problem; (technically it's a feature? It's worked around in the game, so it's surely known). Push-Blocks ignore collisions with doors... This ruins the option to use the mine-spear gates in push-block puzzles.

*This would be the first Glögg feature that I'd ask for ~after gravity support for push-blocks, of course; (with descend-able ladders coming in third).
Last edited by Isaac on Sat Oct 25, 2014 9:28 pm, edited 1 time in total.
Re: Push Block problem ~sort of...
well now it seems that puzle have just one solution so I think script shoudl work when I just change objects accordinglyIsaac wrote:Aha... that was the deliberate feature of the script, and why it was written that way.
*I misunderstood your earlier post as ~that~ being the challenge that needed scripting.
___________
There is another Push-Block problem; (technically its a feature? It's worked around in the game, so it's surely known). Push-Blocks ignore collisions with doors... This ruins the option to use the mine-spear gates in push-block puzzles.
*This would be the first Glögg feature that I'd ask for; (with descend-able ladders the close second).

do you see any way ho to script plate which will reset all blocks to its original position when triggered (by party) ?
Re: Push Block problem ~sort of...
You can destroy and respawn them... but if you mean slide them back to their initial locations... maybe, but we'll have to wait for the scripting reference to be released.Drakkan wrote:...do you see any way ho to script plate which will reset all blocks to its original position when triggered (by party) ?
If there is a way to push blocks via script, then it should be doable to have them either store the moves and play them back in reverse, or have them follow the shortest path to their starting positions.
Re: Push Block problem ~sort of...
destroy and respawn is definitely fine, no need for some sliding backIsaac wrote:You can destroy and respawn them... but if you mean slide them back to their initial locations... maybe, but we'll have to wait for the scripting reference to be released.Drakkan wrote:...do you see any way ho to script plate which will reset all blocks to its original position when triggered (by party) ?
If there is a way to push blocks via script, then it should be doable to have them either store the moves and play them back in reverse, or have them follow the shortest path to their starting positions.
Re: Push Block problem ~sort of...
If you use a button or lever and place it such that the blocks are not in sight when it's used, that would look better I think.Drakkan wrote:destroy and respawn is definitely fine, no need for some sliding backIsaac wrote:You can destroy and respawn them... but if you mean slide them back to their initial locations... maybe, but we'll have to wait for the scripting reference to be released.Drakkan wrote:...do you see any way ho to script plate which will reset all blocks to its original position when triggered (by party) ?
If there is a way to push blocks via script, then it should be doable to have them either store the moves and play them back in reverse, or have them follow the shortest path to their starting positions.
As for scripting it... replace the original script with this one, and connect a button to the 'resetBlocks' function.
Code: Select all
function _definePlatesAndBlocks()
plate = {
{trigger1.x, trigger1.y},
{trigger2.x, trigger2.y},
{trigger3.x, trigger3.y}
}
block = {
{block1.x, block1.y},
{block2.x, block2.y},
{block3.x, block3.y}
}
end
_definePlatesAndBlocks()
function checkBlocks()
for z = 1, #plate do
local stone = findEntity("block"..z)
if plate[z][1] ~= stone.x or
plate[z][2] ~= stone.y then
return
end
end
door1.door:open()
end
function resetBlocks()
print()
for z = 1,3 do
local tempName = "block"..z
findEntity(tempName):destroy()
spawn("pushable_block", self.go.level, block[z][1], block[z][2], math.random(3), self.go.height, tempName)
end
end
Re: Push Block problem ~sort of...
thanks a lot Isaac, that reseting works perfectly exactly as I wanted ! I will credit you for sure.
- Chimera005ao
- Posts: 187
- Joined: Sun Jun 29, 2014 8:34 am
Re: Push Block problem ~sort of...
From their explanation of components, things sounded very easy to change.
I wonder if its as easy as it sounds, now that I know of such things as:
"GravityComponent (Component)
Makes the object fall unless it is on ground or supported by a surface or a platform."
I wonder if its as easy as it sounds, now that I know of such things as:
"GravityComponent (Component)
Makes the object fall unless it is on ground or supported by a surface or a platform."