To configure the Who/Where plugin:
who.yml
Table of Contents
You can configure which fields are shown in columns on the who list. For each field, you can specify the field name, the column width, the column title, and sometimes a value to control the specifics. For example, this config makes two columns (25 wide and 15 wide) showing name and position.
- field: name
width: 25
title: Name
- field: group
value: position
width: 15
title: Position
The following fields are available by default.
You can also create your own fields by extending the general_field
utility in aresmush/plugins/profile/public/profile_api.rb
.
def self.general_field(char, field_type, value)
case field_type
when 'yourfield'
char.get_your_field
etc.
The ‘where’ command comes with three pre-defined styles.
The default style, ‘scene’, emphasizes open scenes by highlighting them at the top. Other people are then shown below.
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+
Ares Local Test
-----[ Open Scenes ]----------------------------------------------------------
#938 My House Cate, Hannah
-----[ Other ]----------------------------------------------------------------
Canceron - Jungle Faraday
------------------------------------------------------------------------------
3 Online 3 IC 4 Record
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+
If you don’t want to highlight scenes, the ‘room’ display will simply group people by room.
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+
Ares Local Test
------------------------------------------------------------------------------
Location People
A1 - My House Cate, Hannah
Canceron - Jungle Faraday
------------------------------------------------------------------------------
3 Online 3 IC 4 Record
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+
The basic display mirrors ‘who’ by showing each person on their own line.
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+
Ares Local Test
------------------------------------------------------------------------------
Status Name Location Conn Idle
NEW Hannah A1 - My House 14s 3s
ADM Faraday Canceron - Jungle 1h 0s
OOC Cate Offstage - Offstage 20s 12s
------------------------------------------------------------------------------
3 Online 2 IC 4 Record
+==~~~~~====~~~~====~~~~====~~~~=====~~~~=====~~~~====~~~~====~~~~====~~~~~==+