1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
fly_to = function(obj)
	imagepos(obj.imageid, obj.x, obj.y, 0)
	
	if obj.direction == 'left' then
		tween_move(obj.imageid, obj.flying_time * 1000, obj.x - (obj.distance * 32), obj.y)
	end
	
	timer(obj.flying_time * 1000, 'parse', 'lua fly_to(' .. obj .. ')')
end
I cannot send that table via timer, it's boring. Can you help me?
That 'timer'
1 
Offline