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
|
|
In response to ITG Master
|
|
Okay, thanks. I knew it was soemwhere among those lines, but couldn't get it heh.
|
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 |