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)
Copyright © 2025 BYOND Software.
All rights reserved.
obj/theprojectilethatyouwantfaster
Move()
spawn(2)
step(src,src.dir)
return ..()