MUDL:rooms
From SlothMUD Wiki
Summary
| Function Name | rooms |
|---|---|
| Settable | No |
| Returns | Array of Rooms |
| Parameter Options |
|---|
| Area |
This function returns an array of all rooms in the specified area.
Example
setproc <parent> # on_foo
foreach(rooms(%area), %9,
(
msg_room(%9, 'Something strange is going on here...')
)),
return(true)