New "style"-property in 8cb4f22467

main-- 2012-06-13 07:10:29 -07:00
parent cae703db5a
commit 83f6e0c8e1
1 changed files with 11 additions and 5 deletions

@ -217,22 +217,28 @@ __In Game Usage:__
## <a name="alias" href="#wiki-alias"></a>Alias
World aliases allow you to name a world differently than what the folder name is. This lets you choose fancy names for your worlds while keeping the folders nice and neat.
The alias attribute can also include a color. Worlds will show up colored when your users chat and via `[[/mv list|Command-Reference#wiki-list]]` or `[[/mv who|Command-Reference#wiki-who]]`.
The alias attribute can also include a color and a style. Worlds will show up colored and styled when your users chat and via `[[/mv list|Command-Reference#wiki-list]]` or `[[/mv who|Command-Reference#wiki-who]]`.
The color must be one of these:
`AQUA, BLACK, BLUE, DARKAQUA, DARKBLUE, DARKGRAY, DARKGREEN, DARKPURPLE, DARKRED, GOLD, GRAY, GREEN, LIGHTPURPLE, RED, YELLOW, WHITE`
The style must be one of these:
`NORMAL, MAGIC, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC`
![Example of World Aliases With Color](http://i.minus.com/ielLOjTOP.png)
### Example: World named FernWorld colored Green
### Example: Set alias to _<font color="green">FernWorld</font>_ (italic, green)
__In Game Usage:__
`mvm set style italic`
`mvm set color green`
`mvm set alias FernWorld`
alias:
color: GREEN
name: FernWorld
__In the config:__
alias: FernWorld
color: GREEN
style: ITALIC
[Back to Top](#wiki-top)