ID:145658
 
Code:
loc = locate(/turf/start)

Problem description:

Code.dm:28:error:/turf/start:undefined type path
What does that mean?

FireBallHatePeace wrote:
Code:
loc = locate(/turf/start)

Problem description:

Code.dm:28:error:/turf/start:undefined type path
What does that mean?

well you can not use locate like that if you want to locate to the location start you will have to search for all turfs in the world and then use the turf start when you find it. But if you just want to locate to a fixed location just put the coridnets in ie loc=locate(10,10,1) that is the location 10,10 on the z axis 1

there is a good tutorial called teliportation found here http://www.riddlersoft.com/ByondPage.htm
That means there is no /turf/start. Simple as that.
In response to The Riddler
You shouldn't be writing tutorials. He CAN use locate() like that. The problem is merely that he hasn't defined a turf/start.
In response to Jp
Thanks guys. i didnt know you were supposed to put in the EXACT place
In response to FireBallHatePeace
In the exact place? I assume you're reading the DM guide, because that example comes from there, from memory (If you are, GOOD FOR YOU! *thumbs up*).

You just need to have a /turf/start defined if you want to use that. It can go anywhere.