ID:267619
 
Hi

how can i have it when you press the up arrow the 'mob' moves down instead of up...like a plane

also

how can i make the mob be stuck to the center of the map but when you press the arrow keys it is the turf that moves...

thanks
You have to play around with the Move() command. For example the anwser yo your first problem would be something like:
client/Move(client/C)
South()
step(C,North)
In response to SSChicken
Thanks well i guess i got some playing to do :-p
In response to SSChicken
SSChicken wrote:
> client/Move(client/C)
> South()
> step(C,North)
>


Erm... no. =P client/Move() doesn't take a client argument; why the hell would it? It takes loc and dir arguments, just like atom/movable/Move(). And you can't call step() on a client; call it like step(src.mob, NORTH) instead.
In response to Crispy
Ah, well you learn something new everyday ^_^