mob
icon='stone.dmi'
obj/Stone
icon = 'stone.dmi'
mob/verb/Stone()
var/obj/Stone/first = new (src.loc)
sleep 5
walk(first, EAST)
sleep 5
walk(first, SOUTH)
sleep 5
walk(first, WEST)
sleep 5
walk(first, NORTH)
var/obj/Stone/second = new (src.loc)
sleep 5
walk(second, EAST)
sleep 5
walk(second, SOUTH)
sleep 5
walk(second, WEST)
sleep 5
walk(second, NORTH)
sleep 5</b>
Problem description:This is working code but i was wondering how i could make the second stone spawn where the first is at on the map.Ive tried many ways and all i end up with is a bunch of errors and run time errors.Any suggestions would be great