ID:264622
 
Code:
mob/verb/Create_Turf(O as null|anything in typesof(/turf))
set category = "Administration"
set name = "Create Turf"
if(!O)
return
var/item = new O(usr.loc)
usr << "You create \a [item:name]."
view() << "Witch a Few Movements of [usr] hands a [item:name] appears"


Problem description: When i try to Create a Turf Send That:
runtime error: bad loc
proc name: Create Turf (/mob/verb/Create_Turf)
usr: Gohan Games (/mob)
src: Gohan Games (/mob)
call stack:
Gohan Games (/mob): Create Turf(/turf (/turf))


Are you actually on the map yourself? If usr.loc isn't a turf it will give that error, and if you just make "item" typed as a turf you wouldn't have to use : to access all the vars.