if(src.dir == NORTH)
new /mob/Monsters/Goop(locate(src.x, src.y+1, src.z,))
How would I make the newly created "Goop" face south?
ID:269348
![]() May 31 2005, 6:41 pm
|
|
if(src.dir == NORTH) How would I make the newly created "Goop" face south? |
![]() May 31 2005, 7:07 pm
|
|
Mecha Destroyer JD wrote:
> if(src.dir == NORTH) How would I make the newly created "Goop" face south? Better questions: What's with the extra comma, and why aren't you using get_step()? var/mob/Monsters/Goop/G = new(get_step(src, dir)) Lummox JR |