ID:147991
 
alright, for my bullet projectile currently im using walk which i feel isnt fast enough, how could i change the speed?
heres a snippet of the code....
client/Northeast()
if(usr.dir == NORTH)
var/obj/bullet/north/N = new /obj/bullet/north(usr.loc)
walk(N,usr.dir)
When I feel that something doesn't go fast enough, I just use step() in the Move() procedure. It doubles it.

obj/theprojectilethatyouwantfaster
Move()
spawn(2)
step(src,src.dir)
return ..()
In response to Unknown Person
i thought you couldnt use a proc inside another proc like that, are you sure thats right? anyone else have any ideas?
In response to Troglodyte
It's perfectly alright to call a procedure from inside another procedure, or call one from inside a verb.