Lephisto/scripts/ai/test.lua
Allanis c10b1f24fb [Add] A few more AI(Lua) calls.
[Add] A little more documentation for Lua.
2013-02-04 14:10:59 +00:00

18 lines
276 B
Lua

-- Required control rate.
control_rate = 2
-- Required "control" function.
function control()
pusttask(0, "follow");
end
function follow()
target =1
dir = face(target)
dist = getdist(getpos(targer))
if dir < 10 and dist > 100 then
accel(dist/100-1)
end
end