Re: Ask a simple question, get a simple answer
Posted: Wed Jul 04, 2018 5:07 pm
https://ibb.co/iZmgbd
https://ibb.co/i6r8NJ
This code doesn't work.
I'm looking for a working code that destroys the cheese when placed on the pedestal and gets replaced by in this case for example a horned fruit
https://ibb.co/i6r8NJ
This code doesn't work.
I'm looking for a working code that destroys the cheese when placed on the pedestal and gets replaced by in this case for example a horned fruit
Code: Select all
function surfaceDestroy(surface, item)
for _,i in surface:contents() do
if i.go.name == item then
i.go:destroy()
return true
end
end
end
function checkcheese(pedestal)
if surfaceDestroy(g1_pedestal_4.surface, "cheese") then
playSound("magic")
g1_pedestal_4.surface:addItem(spawn("horned_fruit").item)
end
end