Denizen/0.7/Activity Scripts/Activities: Difference between revisions
From Citizens Wiki
< Denizen | 0.7 | Activity Scripts
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
{{Denizen Command Color 2|aliceblue| | {{Denizen Command Color 2|aliceblue| | ||
TASK | TASK [SCRIPT:ScriptNAme] (REPEATS:#)(DELAY:#) (DURATION:#) | ||
| | | Runs a TASK script repeatedly. | ||
| | | Modifiers: | ||
SCRIPT: The Task script to run. Note that there will be no "player" associated with this script so some commands will not work | |||
REPEATS: The number of times to repeat the TASK. By default the scripts runs repeatedly until a new activity is assigned. | |||
DELAY: The number of seconds to wait between repeats | |||
DURATION: The number of seconds to pause other activities while the task runs. | |||
'''Example Usages''' | '''Example Usages''' | ||
- 1 TASK SCRIPT:WalkHome REPEATS:0 | |||
- 1 TASK SCRIPT:ComplainAboutThings DELAY:10 DURATION:1 | |||
<pre> | <pre> | ||
</pre> | </pre> | ||
}} | }} |
Revision as of 20:25, 10 October 2012
WANDER |
(RADIUS:#) (DELAY:#) (SPEED:#) (FILTER:#:#,#:#..) (BOOKMARK:BookmarkName) | |
---|---|---|
Causes the Denizen to wander aimlessly. Many options to dictate range and area.
Modifiers:
Example Usages - 1 WANDER DELAY:12 RADIUS:10 SPEED:.75 FILTER:COBBLESTONE,GRAVEL,5 |
TASK [SCRIPT:ScriptNAme] (REPEATS:#)(DELAY:#) (DURATION:#) |
Runs a TASK script repeatedly. | |
---|---|---|
Modifiers:
SCRIPT: The Task script to run. Note that there will be no "player" associated with this script so some commands will not work REPEATS: The number of times to repeat the TASK. By default the scripts runs repeatedly until a new activity is assigned. DELAY: The number of seconds to wait between repeats DURATION: The number of seconds to pause other activities while the task runs. Example Usages - 1 TASK SCRIPT:WalkHome REPEATS:0 - 1 TASK SCRIPT:ComplainAboutThings DELAY:10 DURATION:1 |