whenIdle: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| mNo edit summary | mNo edit summary | ||
| Line 1: | Line 1: | ||
| ; whenIdle [<boolean flag>] | ; whenIdle [<boolean flag>] | ||
| : Set this option to '''1''' if you want to use the block only when Kore is doing nothing. | : Set this option to '''1''' if you want to use the block only when Kore is [[Idle Condition|doing nothing]]. | ||
| == Examples == | |||
|   useSelf_item Firecracker { |   useSelf_item Firecracker { | ||
|   	whenIdle 1 |   	whenIdle 1 | ||
| Line 8: | Line 9: | ||
|   } |   } | ||
| : Use Firecracker every one second when Kore is idle. | |||
| [[Category:Self Condition]] | [[Category:Self Condition]] | ||
Revision as of 02:24, 9 January 2010
- whenIdle [<boolean flag>]
- Set this option to 1 if you want to use the block only when Kore is doing nothing.
Examples
useSelf_item Firecracker {
	whenIdle 1
	timeout 1
}
- Use Firecracker every one second when Kore is idle.