View difference between Paste ID: 1Gqvr4uw and TFSCve8j
SHOW: | | - or go back to the newest paste.
1
local nCount = 10
2
local nPeriod = 0.5
3
4
for n=1,nCount do
5
	redstone.setOutput( sSide, true )
6
	sleep( nPeriod / 2 )
7
	redstone.setOutput( sSide, false )
8
	sleep( nPeriod / 2 )
9
end