ID:271906
Jan 2 2008, 10:19 am
|
|
how to be at two places in the same time? Like your in a house and in the same moment outside
|
In response to Kaiochao2536
|
|
I need it for my naruto game I wanna do it for akatsukis so they can be in their base and in the same moment somewhere else.
|
In response to Team Broken Saints
|
|
Using /image and Move() you should be able to easily do this.
|
In response to Flame Sage
|
|
mob I dont really know what you mean (maybe cause im an idiot) I tried something else but it dont move (Hmmmm xD oh yes I need to learn how to code) |
In response to Team Broken Saints
|
|
It won't move because you're doing nothing to make it move.
You're not changing the Move() proc for /mob/Assemble, you're calling the default action. If you want to make it move, it has to respond to your actual movements. This is how I usually do it, by making a variable. mob I'm sure there's a better way, but that's how I do it. |
In response to Kaiochao2536
|
|
You're going to want to intercept movement at client/Move(), not mob/Move(). mob/Move() is not necessarily client input.
|
Why?