proc
shoot(atom/A)
if(src.ammo>=1)
src << "<font color = red>Reload!</font>"
return
else
var/obj/bullet/B = new
B.loc = src.loc
var/C = get_dir(B,A)
walk(B,C,1)
sleep(15)
del(B)
Problem description:
Yeah. I guess it should work. All it does is make the bullet walk south. What am I doing wrong?
Try now!!!
- Dark Emrald