I would like to spawn a receptor that is activated by a blob, and link it to a trapdoor that will close if the receptor is hit by the blob.
Here is the script i use . it spawns the receptor, but it doesnt close the trapdoor :
function spawnrecep()
spawn("deep_temple_receptor",4,18,10,3,"receptor_blob")
receptor_blob:setEntityType("blob")
receptor_blob:addConnector("activate","blob_pit","close")
end
Need help please