diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-27 11:35:22 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-27 11:35:22 -0400 |
commit | 48cd8419bb274345fe386d47843f9aa16910e090 (patch) | |
tree | a0e31b43b0f38d6de8d3879b29563cfee1b19ced /xml/entities.xml | |
parent | 8be1f74e878950cbbac3f05451341fc18892518b (diff) |
lua-scripted wandering
Diffstat (limited to 'xml/entities.xml')
-rw-r--r-- | xml/entities.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/xml/entities.xml b/xml/entities.xml index 72431dc..aecae45 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -50,7 +50,19 @@ <Physics /> <Name value="Daddy" /> <Dialog /> - <Wander /> + <Wander> + countdown = 0 + velx = 0 + + update = function() + if (countdown == 0) then + countdown = 5000 + math.random(0, 2000) + velx = (math.random(0, 3) - 1) * 0.004 + end + countdown = countdown - 1 + return velx, 0 + end + </Wander> </npc> <skirl> |