MUDL:rooms
From SlothMUD Wiki
Revision as of 18:45, 8 November 2018 by Teker (Talk | contribs) (Created page with " __TOC__ = Summary = {|class="abilitiestable" border="0" cellspacing="0" cellpadding="0" ! Function Name | rooms |- ! Settable | No |- ! Returns | Array of Rooms |} {|cla...")
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)