Denizen/0.7/Activity Scripts/Activities: Difference between revisions
From Citizens Wiki
< Denizen | 0.7 | Activity Scripts
m (AgentKid moved page Denizen/Activity Scripts/Activities to Denizen/0.7/Activity Scripts/Activities without leaving a redirect) |
No edit summary |
||
Line 19: | Line 19: | ||
TASK | TASK | ||
|[SCRIPT:ScriptNAme] (REPEATS:#) (DELAY:#) (DURATION:#) | |[SCRIPT:ScriptNAme] (REPEATS:#) (DELAY:#) (DURATION:#) | ||
| Runs a [[Denizen/Task_Scripts|Task Script]] repeatedly. | | Runs a [[Denizen/0.7/Task_Scripts|Task Script]] repeatedly. | ||
Modifiers: | Modifiers: | ||
*SCRIPT: The Task script to run. Note that there will be no "player" associated with this script so some commands will not work. | *SCRIPT: The Task script to run. Note that there will be no "player" associated with this script so some commands will not work. |
Revision as of 18:28, 5 February 2013
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:
Example Usages - 1 TASK SCRIPT:WalkHome REPEATS:0 - 1 TASK SCRIPT:ComplainAboutThings DELAY:10 DURATION:1 |