ID:770870
 
(See the best response by Stoneman.)
maps/proc/look()

how would i call the above proc from within obj/verb/drop()

call (maps/proc,look()) is not working.
error: expected syntax: call([Object,]Proc)(Args)
Best response
Initialize a /maps instance

var/maps/m = new


Then call its look() proc

m.look()
yes. that worked. thanks a bunch