whenIdle: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
|  Created page with '; whenIdle [<boolean flag>] : Set this option to '''1''' if you want to use the block only when Kore is doing nothing.   Example:  useSelf_item Firecracker {  	whenIdle 1  	timeo…' | No edit summary | ||
| (7 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| ; whenIdle [<boolean  | ; whenIdle [<[[boolean]]>] | ||
| : Set this option to '''1''' if you want to use the block only when Kore is doing nothing. | ; homunculus_whenIdle [<[[boolean]]>] | ||
| ; mercenary_whenIdle [<[[boolean]]>] | |||
| : Set this option to '''1''' if you want to use the block only when Kore is [[:Category:Idle Condition|doing nothing]]. | |||
| ; whenNotIdle [<[[boolean]]>] | |||
| ; homunculus_whenNotIdle [<[[boolean]]>] | |||
| ; mercenary_whenNotIdle [<[[boolean]]>] | |||
| : Set this option to '''1''' if you want to use the block only when Kore is not [[:Category:Idle Condition|doing nothing]]. | |||
| == Examples == | |||
|   useSelf_item Firecracker { |   useSelf_item Firecracker { | ||
|   	whenIdle 1 |   	whenIdle 1 | ||
| Line 8: | Line 16: | ||
|   } |   } | ||
| : Use Firecracker every one second when Kore is idle. | |||
| [[Category:Self Condition]] | |||
| [[Category:Idle Condition]] | |||
Latest revision as of 21:47, 18 September 2022
- whenIdle [<boolean>]
- homunculus_whenIdle [<boolean>]
- mercenary_whenIdle [<boolean>]
- Set this option to 1 if you want to use the block only when Kore is doing nothing.
- whenNotIdle [<boolean>]
- homunculus_whenNotIdle [<boolean>]
- mercenary_whenNotIdle [<boolean>]
- Set this option to 1 if you want to use the block only when Kore is not doing nothing.
Examples
useSelf_item Firecracker {
	whenIdle 1
	timeout 1
}
- Use Firecracker every one second when Kore is idle.