Problem description:
What I am trying to do is get the arrow to move different becuse teh regular walk() proc just wont cut it.\
THE PROBLEM!? - When i create the Arrow it doesnt show up. it showed up before I created the new Start() proc and stuff... :(
EDIT - It now creates the arrow, becuease I spawned() in the New() proc..but it still wont move!
EDIT 2 - Fixed it! Thanks anyway!
Code:
obj
Arrow
icon = 'Arrows 1.dmi'
density = 1
Bump(atom/M)
del(src)
New()
..()
src.Start()
proc
Start()
sleep(10)
if(src.pixel_y==32)
src.pixel_y = 0
step(src,NORTH)
else
while(src)
sleep(global.Speed)
pixel_y++