|
| 1 | +<img src="https://raw.githubusercontent.com/alejandroliu/bad-plugins/master/Media/Chat-icon.png" style="width:64px;height:64px" width="64" height="64"/> |
| 2 | + |
| 3 | +# YouChat |
| 4 | + |
| 5 | +* Summary: Chat Management: Nicknames, prefixes, muting |
| 6 | +* Dependency Plugins: N/A |
| 7 | +* PocketMine-MP version: 1.5 - API 1.12.0 |
| 8 | +* DependencyPlugins: - |
| 9 | +* OptionalPlugins: [KillRate] |
| 10 | +* Categories: Chat |
| 11 | +* Plugin Access: Other Plugins, Commands, Data Saving |
| 12 | +* WebSite: [github](https://github.com/alejandroliu/plugin-remakes/tree/master/YouChat) |
| 13 | + |
| 14 | +## Overview |
| 15 | + |
| 16 | +Complete set of commands to control your server chat. |
| 17 | + |
| 18 | +### Features |
| 19 | + |
| 20 | +* prefixes |
| 21 | +* nicknames |
| 22 | +* multiworlds |
| 23 | +* scoring (with |
| 24 | + [KillRate](http://forums.pocketmine.net/plugins/killrate.1137/)) |
| 25 | +* muting |
| 26 | +* chat disabling |
| 27 | +* configurable |
| 28 | + |
| 29 | +## Documentation |
| 30 | + |
| 31 | +Basic Commands: |
| 32 | + |
| 33 | +* /setprefix [player] <prefix> - sets prefix for player |
| 34 | +* /defprefix [prefix] - sets default prefix for new players |
| 35 | +* /delprefix [player] <prefix> - set player's prefix to default. |
| 36 | +* /setnick [player] <nick> - sets player's nick |
| 37 | +* /delnick [player] - returns players's real name |
| 38 | +* /mute [player] - mute player from chat |
| 39 | +* /unmute [player] - unmute player from chat |
| 40 | +* /ycd - disable chat for all players |
| 41 | +* /yce - enable chat for all players |
| 42 | + |
| 43 | + |
| 44 | +### Configuration |
| 45 | + |
| 46 | +These can be configured from `config.yml`: |
| 47 | + |
| 48 | +```YAML |
| 49 | +[CODE] |
| 50 | +settings: |
| 51 | + chat-format: '{GREEN}{world}:[{prefix}]{BLUE}<{nick} ({kills})>{WHITE} {message}' |
| 52 | +[/CODE] |
| 53 | +``` |
| 54 | + |
| 55 | +### Permission Nodes: |
| 56 | + |
| 57 | +```YAML |
| 58 | + youchat.cmd.prefix: |
| 59 | + default: true |
| 60 | + description: "allow players to change their prefix" |
| 61 | + youchat.cmd.op.prefix: |
| 62 | + default: op |
| 63 | + description: "allow players to change others prefix" |
| 64 | + youchat.cmd.nick: |
| 65 | + default: true |
| 66 | + description: "allow players to change their nickname" |
| 67 | + youchat.cmd.op.nick: |
| 68 | + default: true |
| 69 | + description: "allow players to change others nickname" |
| 70 | + youchat.cmd.op.defprefix: |
| 71 | + default: op |
| 72 | + description: "Define default prefix" |
| 73 | + youchat.cmd.op.mute: |
| 74 | + default: op |
| 75 | + description: Allow to mute/unmute players |
| 76 | + youchat.comd.op.ycx: |
| 77 | + default: op |
| 78 | + description: Allowed to enable/disable chat |
| 79 | +``` |
| 80 | +
|
| 81 | +# Changes |
| 82 | +
|
| 83 | +* 1.0.0 : First version |
| 84 | +
|
| 85 | +# Copyright |
| 86 | +
|
| 87 | + YouChat |
| 88 | + Copyright (C) 2015 Alejandro Liu |
| 89 | + All Rights Reserved. |
| 90 | +
|
| 91 | + This program is free software: you can redistribute it and/or modify |
| 92 | + it under the terms of the GNU General Public License as published by |
| 93 | + the Free Software Foundation, either version 2 of the License, or |
| 94 | + (at your option) any later version. |
| 95 | +
|
| 96 | + This program is distributed in the hope that it will be useful, |
| 97 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 98 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 99 | + GNU General Public License for more details. |
| 100 | +
|
| 101 | + You should have received a copy of the GNU General Public License |
| 102 | + along with this program. If not, see <http://www.gnu.org/licenses/>. |
0 commit comments