-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Flavius12
committed
Apr 16, 2015
1 parent
3a86b9a
commit 855f79f
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,58 @@ | ||
# PopupAlerts | ||
A PocketMine-MP plugin to show alerts in popups using CustomAlertsAPI | ||
|
||
## Category | ||
|
||
PocketMine-MP plugins | ||
|
||
## Requirements | ||
|
||
PocketMine-MP Alpha_1.5 API 1.12.0<br> | ||
**Dependency Plugins:** CustomAlerts v1.2 API 1.0 | ||
|
||
## Overview | ||
|
||
**PopupAlerts** is a CustomAlerts extension which allows you to show alerts (like join/leave messages, etc...) in popups! | ||
|
||
**EvolSoft Website:** http://www.evolsoft.tk | ||
|
||
|
||
***This Plugin uses PocketMine 1.5 API. You can't install it on old versions of PocketMine and this plugin works only with MCPE v0.11.0 and later.***<br> | ||
***This Plugin is a CustomAlerts extension and uses CustomAlerts API 1.0. THIS MEANS THAT YOU NEED TO INSTALL CustomAlerts v1.2 PLUGIN TO USE PopupAlerts*** | ||
|
||
Messages can be configured simply from default CustomAlerts config.yml<br> | ||
Please read the documentation to see how to configure PopupAlerts | ||
|
||
## Documentation | ||
|
||
**Configuration (config.yml):** | ||
|
||
```yaml | ||
--- | ||
#Message text must be configured from default CustomAlerts config.yml file | ||
#Join messages | ||
Join: | ||
#Show join messages in popups | ||
show-popup: true | ||
#Hide default join messages (they won't be displayed in chat but only on popups) | ||
hide-default: false | ||
#Quit messages | ||
Quit: | ||
#Show quit messages in popups | ||
show-popup: true | ||
#Hide default quit messages (they won't be displayed in chat but only on popups) | ||
hide-default: true | ||
#World Change messages (they are displayed only if they are enabled in CustomAlerts configuration) | ||
WorldChange: | ||
#Show world change messages in popups | ||
show-popup: true | ||
#Hide default world change messages (they won't be displayed in chat but only on popups) | ||
hide-default: true | ||
#Death messages | ||
Death: | ||
#Show death messages in popups (Remember that they can't be displayed from the victim) | ||
show-popup: true | ||
#Hide default death messages (they won't be displayed in chat but only on popups) | ||
hide-default: false | ||
... | ||
``` |