https://github.com/evolsoft/popupalerts
A PocketMine-MP plugin to show alerts (join/leave messages, etc...) in popups using CustomAlerts API
https://github.com/evolsoft/popupalerts
customalerts-extension php plugin pocketmine-mp
Last synced: 4 months ago
JSON representation
A PocketMine-MP plugin to show alerts (join/leave messages, etc...) in popups using CustomAlerts API
- Host: GitHub
- URL: https://github.com/evolsoft/popupalerts
- Owner: EvolSoft
- License: mit
- Created: 2015-04-15T14:26:51.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-12-05T15:03:23.000Z (over 5 years ago)
- Last Synced: 2025-07-09T10:43:33.792Z (12 months ago)
- Topics: customalerts-extension, php, plugin, pocketmine-mp
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 11
- Watchers: 10
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# PopupAlerts
A PocketMine-MP plugin that shows alerts in popups using CustomAlerts API
[](http://gestyy.com/er3dK6)
## Category
PocketMine-MP plugins
## Requirements
PocketMine-MP 1.7dev API 3.0.0-ALPHA7 -> 3.0.0-ALPHA12
**Dependency Plugins:** CustomAlerts v1.8 API 2.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 is a CustomAlerts extension and uses CustomAlerts API 2.0. THIS MEANS THAT YOU NEED TO INSTALL CustomAlerts v1.8 PLUGIN TO USE PopupAlerts***
Messages can be configured simply from the CustomAlerts configuration file
Please read the documentation to see how to configure PopupAlerts
## Donate
Support the development of this plugin with a small donation by clicking [:dollar: here](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=flavius.c.1999@gmail.com&lc=US&item_name=www.evolsoft.tk&no_note=0&cn=&curency_code=EUR&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted). Thank you :smile:
## Documentation
**Configuration (config.yml):**
```yaml
---
#Message text must be configured from default CustomAlerts config.yml file
#Join messages
Join:
#The duration of popup
duration: 3
#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: true
#Quit messages
Quit:
#The duration of popup
duration: 3
#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:
#The duration of popup
duration: 3
#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:
#The duration of popup
duration: 3
#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: true
...
```