So, since it feels newbieish, I thought I should put it here instead of the coding problem section where the big dogs hang out.
I'm trying to use this code so that when they login, they start off at a certain spot, so I figured I'd use this:
mob/Login()
src.loc = locate(/turf/myturf)
But, I'm not exactly sure what to do with it... Can I get some help, please? Thanks.
ID:267640
Aug 7 2003, 8:31 am
|
|
In response to Nappa6003
|
|
But if there's more than one map, how does it know which one to start out in?
I'm editing this. I put in the code, and set the x y and z for 21,31,1, but I still start in the corner of the map. |
There are a number of ways to do this.
The most basic way is to set the coordinates when they log in:
|
mob/Login()
src.loc = locate(69,80,1)