|
Eowyn Apprentice
Joined: 19 Jan 2001 Posts: 117 Location: Norway
|
Posted: Sun Mar 14, 2004 8:53 pm
%mapfiler and room exit name? |
Is there any way to search for a room with a specific exit?
Something like this:
#NOOP %mapfilter( %concat( "[exits] = ',"brokenrock",'"))
#ECHO %mapvnum( 1)
?
Thanks :) |
|
|
|
Charbal GURU
Joined: 15 Jun 2001 Posts: 654 Location: USA
|
Posted: Sun Mar 14, 2004 9:35 pm |
This should display all room numbers (not VNums) with an exit with a doorname of brokenrock:
#FORALL %mapquery("ObjID IN (SELECT FromID FROM ExitTbl WHERE Param = 'brokenrock' OR Param LIKE 'brokenrock|%')") {#SAY %i} |
|
|
|
|
|