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)
ID:147991
Aug 21 2003, 3:47 am
|
|
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.
|
obj/theprojectilethatyouwantfaster
Move()
spawn(2)
step(src,src.dir)
return ..()