Native Minecraft Version:
Legacy (< 1.13)
Tested Minecraft Versions:
Multilanguage
Donation Link:
https://www.paypal.com/paypalme/adri1711Dev
NOW IT CONTAINS 7 EXAMPLE MAPS, SEE MEDIA* (TO HAVE THEM AND THE QUESTS COMPATIBILITY JAR PM ME VIA SPIGOT OR JOIN THE DISCORD)
What is RandomEvents? RandomEvents is a plugin that spawns random minigames for all players to enter just clicking in the alert of the chat, easy, funny and rewarded!
How to join a RandomEvent? Just by clicking on the alert that is thrown when a random event is live!
*See the video in the media section!*
Features:
Battle Royale -> BR
Battle Royale Team 2 -> BRT2
Knight Battle Royale -> LJ
Top Killer -> TKLL
Top Killer Team 2 -> TKLLT2
Knockback Duel -> KBD
Escape Arrow -> EARR
Gem Crawler -> GEMC
Bomb Tag -> BOMB
Boat Run -> BOAT_RUN
Escape From Beast -> ESCAPE_FROM_BEAST
Race -> RACE
TNT Run -> TNTRUN
Spleef -> SPLEEF
Splegg -> SPLEGG
One in the chamber -> OITC
Horse Run -> HORSE_RUN
Skywars -> SW
Team Skywars -> TSW
Survival Games -> SG
Team Survival Games -> TSG
Anvil Spleef -> ANVIL_SPLEEF
Water Drop -> WDROP
Example: %randomevents_tries_game_ESCAPE_FROM_BEAST%
Code (YAML):
#################################################################
# RandomEvents #
# Configuration #
#################################################################
debugMode: false
#Seconds to check if the probability match for a random event
secondsTimer: 60
#Seconds to check if the minimum players is fulfilled to begin the match
secondsCheckPlayers: 15
# Percentage of probability to spawn a random event each time the timer is fired
probabilityRandomEvent: 5
#Probability that the spawned random event is a tournament
probabilityRandomEventTournament: 5
#Teleport to the last location instead of spawn of the plugin
useLastLocation: false
#Number of annoucements the random event will do before being cancelled for lack of players
numberOfTriesBeforeCancelling: 10
#Force Empty Inventory to Join the RandomEvents
forceEmptyInventoryToJoin: false
#CAUTION. IT IS HIGHLY RECOMMENDED to let it true. If false, the plugin will not manage the items so players will join with own items and can lose them there.
#Some minigames might not work if its set to false (Splegg, TNT Tag...) as they need special items to work
inventoryManagement: true
#Drops items after dying in a minigame
dropItemsAfterDie: false
#Number of gems to win in gem crawler minigame
numberOfGems: 10
#Number of seconds you have to save the gems to win in gem crawler minigame
numberOfSecondsWithGems: 10
#Seconds to begin TNT_RUN so TNT will begin to disappear
warmupTimeTNTRUN: 5
#Seconds to begin the match when the min players are fulfilled (minimum 3 seconds)
secondsToStartMatch: 5
#Highest priority level of events. Enable this to bypass damage protection of faction plugins for example.
highestPriorityDamageEvents: false
#Optional titles for some messages such as the seconds remaining to begin a match, turn this to true if you want to see titles instead of messages in chat.
optionalTitles: false
#Maximum items in chests on Survival Games or Skywars minigames
maxItemOnChests: 10
#Minimum items in chests on Survival Games or Skywars minigames
minItemOnChests: 3
#Show world border in some minigames
showBorders: false
#Use particles in some minigames
useParticles: false
#Allowed configurable particles ->
#EXPLOSION_NORMAL || EXPLOSION_LARGE || EXPLOSION_HUGE || FIREWORKS_SPARK
#WATER_BUBBLE || WATER_SPLASH || WATER_WAKE || SUSPENDED
#SUSPENDED_DEPTH || CRIT || CRIT_MAGIC || SMOKE_NORMAL
#SMOKE_LARGE || SPELL || SPELL_INSTANT || SPELL_MOB
#SPELL_MOB_AMBIENT || SPELL_WITCH || DRIP_WATER || DRIP_LAVA
#VILLAGER_ANGRY || VILLAGER_HAPPY || TOWN_AURA || NOTE
#PORTAL || ENCHANTMENT_TABLE || FLAME || LAVA
#CLOUD || REDSTONE || SNOWBALL || SNOW_SHOVEL
#SLIME || HEART || BARRIER || ITEM_CRACK
#BLOCK_CRACK || BLOCK_DUST || WATER_DROP || MOB_APPEARANCE
#DRAGON_BREATH || END_ROD || DAMAGE_INDICATOR || SWEEP_ATTACK
particleDeath: 'EXPLOSION_NORMAL'
particleTNTTag: 'REDSTONE'
#Particles forms:
#blackSun(radius, radiusRate, rate, rateChange)
#circle(radius, rate)
#crescent(radius, rate)
#cylinder(height, radius, rate)
#diamond(radiusRate, rate, height)
#ellipse(radius, radius2, rate)
#eye(radius, radius2, rate, extension)
#filledCircle(radius, rate, radiusRate)
#illuminati(size, extension)
#infinity(radius, rate)
#ring(rate, radius, radius2)
#sphere(radius, rate)
#meguminExplosion(size)
#Use RANDOM to spawn one of the effects at a time randomly
particle:
type: sphere
size: 1.0
radius: 1.0
radiusRate: 1.0
radius2: 1.0
rate: 4.0
rateChange: 1.0
height: 1.0
extension: 4.0
tournament:
spawn:
world: world
x: 0.0
y: 60.0
z: 0.0
pitch: 0.0
yaw: 0.0
maxPlayers: 64
minPlayers: 20
numberOfRounds: 5
rewards:
- 'eco give %player% 10000'
#Probability to spawn a power up of resistance in arrow rain games
probabilityPowerUp: 1
#Minimum amount of players to begin checking for random events
minPlayers: 40
#Seconds for several minigames to damage all players if they are not attacking each other
idleTimeForDamage: 10
#Commands that will be done each time a user join a random event, use it in case you need to get the god mode off, to set the gamemode to survival, etc
commandsOnUserJoin:
- 'psa %player%'
#Commands that will be done when the match begin for all players, use it in case you need to get the god mode off, to set the gamemode to survival, etc
commandsOnMatchBegin:
- 'god %player% off'
#Allowed cmds in matchs. (DONT USE CAPS HERE)
allowedCmds:
- msg
- ac
- revent
- randomevent
#Spawn where the player will be teleported after minigame ends
spawn:
world: world
x: 0.0
y: 60.0
z: 0.0
pitch: 0.0
yaw: 0.0
#Enable MySQL to have statistics of the games!
mysql:
enabled: false
UUIDMode: false
host: localhost
port: 3306
database: database
username: user
password: password
API USAGE
It is a static api so you can use it as RandomEventsAPI.method()
Some examples:
Code (Java):
public static List<Match> getMatches();
public static MatchActive getMatch();
//TODO The API will grow up with the suggestions of the buyers
Event Supported:
Code (Java):
@EventHandler
public void onReventBegin(ReventBeginEvent event)
{
//TODO
}
@EventHandler
public void onReventEnd(ReventEndEvent event)
{
//TODO
}


There are several minigames you can configure and more are coming soon.
Here are a list of things you can configure with each minigame!
Battle Royale and Team Battle Royale:
A fierce battle where just 1 player or team can remain alive.
Top Killer and Team Top Killer:
Only the most powerful assasin can win this event, kill players to get points, the player with more points will get the rewards after <X> time of match.
Knight Battle:
A type of battle royale accompanied by your faithful horse. Be the last to stand to get the reward.
Knockback Duel / SUMO:
A battle where your attack power does not matter, you will have to make an strategy to get the enemies thrown away from the arena to get them killed! Be the last one who stands!
TNT Tag:
Run with the bomb and hit enemies to give it to them and avoid your own death. Each <X> time the bomb will explode and will get the player that had it and everyone near him dead.
Gem Carrier:
Random gems will spawn in the arena. Try to get all of them until you reach 10 gems or steal it from the enemies that has them. Stand 10 seconds more carrying your 10 gems and you will get your hands on the reward!
Boat Race:
Be the fastest sailor and reach the finish line before your pursuers!
Arrow Rain:
Avoid the arrows coming from the sky if you dont want to lose your head!
Races
Run and be the first to reach the goal to get your reward!
Run from the beast
The classic Run from the beast minigame! Beat the beast by completing all the scenario and get enough equipment to make damage to the beast!
TNT RUN
Run for your life, the tnt behind you will disappear, try to stay over them to win the match!
SPLEEF
Make the other players fall by breaking the blocks on their feets, be the one to stay safe to win the reward!
SPLEGG
Another type of Spleef but this time use your pistol to throw eggs that will break the floor!
One in the chamber
Game that arrows are letal, hit your enemies to get points and if you get out of arrows... Good luck!
Horse Run
Ride your horse and be the first to reach the goal to get your reward!
Skywars and Team Skywars
Fall in your island and search for your look to claim your victory!
Survival Games and Team Survival Games (Hunger Games)
Arm yourself to fight the enemies and get your reward!
Anvil Spleef
Avoid being smashed by anvils while looking at the floor disappearing because of them!
Water Drop
Multi Stage water drop. Be the first to handle all the maps and become the winner!
The creation of the arenas for the minigames are interactives and chat based, after the creation of the arena a JSON file is created. Thats an example:
That's a TNT Tag Event I configured for my server
Code (Text):
{
"name": "Cerezos",
"inventory": {
"contents": [
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"helmet": "{\"type\":\"GOLD_HELMET\"}",
"chestplate": "{\"type\":\"GOLD_CHESTPLATE\"}"
},
"amountPlayers": 30,
"amountPlayersMin": 14,
"playerSpawn": "{\"x\":\"649997.5\",\"y\":\"67.0\",\"z\":\"69995.5\",\"pitch\":\"-1.7996404\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"-179.68677\"}",
"minigame": "BOMB_TAG",
"spawns": [
"{\"x\":\"849942.6233013485\",\"y\":\"67.0\",\"z\":\"89927.73323871447\",\"pitch\":\"7.6508527\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"2.9035645\"}",
"{\"x\":\"849952.8274692118\",\"y\":\"67.0\",\"z\":\"89925.06015923781\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849962.5356990774\",\"y\":\"67.0\",\"z\":\"89925.71500137949\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849971.2132088551\",\"y\":\"67.0\",\"z\":\"89925.70816136338\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849980.506399855\",\"y\":\"67.0\",\"z\":\"89925.70083277469\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849990.6059888965\",\"y\":\"67.0\",\"z\":\"89932.17361297162\",\"pitch\":\"2.8508506\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"44.153046\"}",
"{\"x\":\"849986.9802885945\",\"y\":\"67.0\",\"z\":\"90008.07018811424\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849977.0018465791\",\"y\":\"67.0\",\"z\":\"90008.5576920172\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849964.4671131066\",\"y\":\"67.0\",\"z\":\"90008.80183266044\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849952.632166835\",\"y\":\"67.0\",\"z\":\"90008.58068155173\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849938.4454556413\",\"y\":\"67.0\",\"z\":\"90006.37422375023\",\"pitch\":\"2.850844\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"212.30316\"}",
"{\"x\":\"849935.5775426377\",\"y\":\"66.0\",\"z\":\"89991.27123217548\",\"pitch\":\"1.5008457\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"248.45343\"}",
"{\"x\":\"849934.8928068962\",\"y\":\"64.0\",\"z\":\"89974.14895448094\",\"pitch\":\"9.000842\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"242.0036\"}",
"{\"x\":\"849933.1489896713\",\"y\":\"64.5\",\"z\":\"89961.97825100168\",\"pitch\":\"4.950843\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"293.1537\"}",
"{\"x\":\"849936.158493475\",\"y\":\"65.0\",\"z\":\"89951.1585638861\",\"pitch\":\"-1.3491566\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"318.35376\"}",
"{\"x\":\"849946.8489804546\",\"y\":\"66.0\",\"z\":\"89950.78232372824\",\"pitch\":\"3.9008417\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"342.8039\"}",
"{\"x\":\"849963.9885004557\",\"y\":\"66.0\",\"z\":\"89945.61372226676\",\"pitch\":\"0.15084317\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"10.104065\"}",
"{\"x\":\"849979.6396013942\",\"y\":\"65.0\",\"z\":\"89948.80924812988\",\"pitch\":\"13.350841\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"43.703857\"}",
"{\"x\":\"849987.4691091033\",\"y\":\"65.0\",\"z\":\"89960.21903509779\",\"pitch\":\"-0.5991617\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"86.75342\"}",
"{\"x\":\"849989.6457658826\",\"y\":\"64.0\",\"z\":\"89971.45483919822\",\"pitch\":\"-2.5491614\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"93.95355\"}",
"{\"x\":\"849988.1404826749\",\"y\":\"65.0\",\"z\":\"89981.60164109973\",\"pitch\":\"-1.3491594\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"107.4541\"}",
"{\"x\":\"849989.7066127106\",\"y\":\"65.0\",\"z\":\"89993.18868366316\",\"pitch\":\"-4.34916\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"114.354614\"}",
"{\"x\":\"849977.2192270755\",\"y\":\"67.0\",\"z\":\"89994.38951882365\",\"pitch\":\"3.9008374\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"151.10449\"}",
"{\"x\":\"849960.3646767023\",\"y\":\"65.0\",\"z\":\"89991.67482577314\",\"pitch\":\"6.300839\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"177.20471\"}",
"{\"x\":\"849944.5715873084\",\"y\":\"65.0\",\"z\":\"89990.24034125991\",\"pitch\":\"5.400838\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"215.30518\"}",
"{\"x\":\"849950.3854629751\",\"y\":\"65.0\",\"z\":\"89977.91542996567\",\"pitch\":\"4.350837\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"224.00531\"}",
"{\"x\":\"849953.5116295354\",\"y\":\"64.0\",\"z\":\"89967.75238404673\",\"pitch\":\"-5.6991644\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"280.8559\"}",
"{\"x\":\"849967.3626433255\",\"y\":\"65.0\",\"z\":\"89964.52508232334\",\"pitch\":\"-0.44915968\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"45.207153\"}",
"{\"x\":\"849969.589701893\",\"y\":\"65.0\",\"z\":\"89978.70911199847\",\"pitch\":\"0.90083975\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"121.40637\"}",
"{\"x\":\"849960.7656794582\",\"y\":\"64.0\",\"z\":\"89972.73255920268\",\"pitch\":\"-7.349162\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"125.45691\"}"
],
"spectatorSpawns": [
"{\"x\":\"849942.6233013485\",\"y\":\"100.0\",\"z\":\"89927.73323871447\",\"pitch\":\"7.6508527\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"2.9035645\"}",
"{\"x\":\"849952.8274692118\",\"y\":\"100.0\",\"z\":\"89925.06015923781\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849962.5356990774\",\"y\":\"100.0\",\"z\":\"89925.71500137949\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849971.2132088551\",\"y\":\"100.0\",\"z\":\"89925.70816136338\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849980.506399855\",\"y\":\"100.0\",\"z\":\"89925.70083277469\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849990.6059888965\",\"y\":\"100.0\",\"z\":\"89932.17361297162\",\"pitch\":\"2.8508506\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"44.153046\"}",
"{\"x\":\"849986.9802885945\",\"y\":\"100.0\",\"z\":\"90008.07018811424\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849977.0018465791\",\"y\":\"100.0\",\"z\":\"90008.5576920172\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849964.4671131066\",\"y\":\"100.0\",\"z\":\"90008.80183266044\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849952.632166835\",\"y\":\"100.0\",\"z\":\"90008.58068155173\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849938.4454556413\",\"y\":\"100.0\",\"z\":\"90006.37422375023\",\"pitch\":\"2.850844\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"212.30316\"}",
"{\"x\":\"849935.5775426377\",\"y\":\"100.0\",\"z\":\"89991.27123217548\",\"pitch\":\"1.5008457\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"248.45343\"}",
"{\"x\":\"849934.8928068962\",\"y\":\"100.0\",\"z\":\"89974.14895448094\",\"pitch\":\"9.000842\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"242.0036\"}",
"{\"x\":\"849933.1489896713\",\"y\":\"100.5\",\"z\":\"89961.97825100168\",\"pitch\":\"4.950843\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"293.1537\"}",
"{\"x\":\"849936.158493475\",\"y\":\"100.0\",\"z\":\"89951.1585638861\",\"pitch\":\"-1.3491566\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"318.35376\"}",
"{\"x\":\"849946.8489804546\",\"y\":\"100.0\",\"z\":\"89950.78232372824\",\"pitch\":\"3.9008417\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"342.8039\"}",
"{\"x\":\"849963.9885004557\",\"y\":\"100.0\",\"z\":\"89945.61372226676\",\"pitch\":\"0.15084317\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"10.104065\"}",
"{\"x\":\"849979.6396013942\",\"y\":\"100.0\",\"z\":\"89948.80924812988\",\"pitch\":\"13.350841\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"43.703857\"}",
"{\"x\":\"849987.4691091033\",\"y\":\"100.0\",\"z\":\"89960.21903509779\",\"pitch\":\"-0.5991617\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"86.75342\"}",
"{\"x\":\"849989.6457658826\",\"y\":\"100.0\",\"z\":\"89971.45483919822\",\"pitch\":\"-2.5491614\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"93.95355\"}",
"{\"x\":\"849988.1404826749\",\"y\":\"100.0\",\"z\":\"89981.60164109973\",\"pitch\":\"-1.3491594\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"107.4541\"}",
"{\"x\":\"849989.7066127106\",\"y\":\"100.0\",\"z\":\"89993.18868366316\",\"pitch\":\"-4.34916\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"114.354614\"}",
"{\"x\":\"849977.2192270755\",\"y\":\"100.0\",\"z\":\"89994.38951882365\",\"pitch\":\"3.9008374\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"151.10449\"}",
"{\"x\":\"849960.3646767023\",\"y\":\"100.0\",\"z\":\"89991.67482577314\",\"pitch\":\"6.300839\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"177.20471\"}",
"{\"x\":\"849944.5715873084\",\"y\":\"100.0\",\"z\":\"89990.24034125991\",\"pitch\":\"5.400838\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"215.30518\"}",
"{\"x\":\"849950.3854629751\",\"y\":\"100.0\",\"z\":\"89977.91542996567\",\"pitch\":\"4.350837\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"224.00531\"}",
"{\"x\":\"849953.5116295354\",\"y\":\"100.0\",\"z\":\"89967.75238404673\",\"pitch\":\"-5.6991644\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"280.8559\"}",
"{\"x\":\"849967.3626433255\",\"y\":\"100.0\",\"z\":\"89964.52508232334\",\"pitch\":\"-0.44915968\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"45.207153\"}",
"{\"x\":\"849969.589701893\",\"y\":\"100.0\",\"z\":\"89978.70911199847\",\"pitch\":\"0.90083975\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"121.40637\"}",
"{\"x\":\"849960.7656794582\",\"y\":\"100.0\",\"z\":\"89972.73255920268\",\"pitch\":\"-7.349162\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"125.45691\"}"
],
"secondsMobSpawn": 20.0,
"rewards": [
"dubilets give %player% 1"
]
}
You can use /revent and /randomevents aliases.
Servers using it:
2.- Run the server
3.- Execute the command /revent spawnset and begin creating random events with the /revent create command!
Metrics collection
This plugin collects anonymous server statistics through bStats, an open-source Minecraft statistics service.
If you'd like to disable metrics collection via bStats, you can edit the plugins/bStats/config.yml file.
View attachment 48rY1k0
Legacy (< 1.13)
Tested Minecraft Versions:
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
- 1.13
- 1.14
- 1.15
- 1.16
Multilanguage
Donation Link:
https://www.paypal.com/paypalme/adri1711Dev
NOW IT CONTAINS 7 EXAMPLE MAPS, SEE MEDIA* (TO HAVE THEM AND THE QUESTS COMPATIBILITY JAR PM ME VIA SPIGOT OR JOIN THE DISCORD)
What is RandomEvents? RandomEvents is a plugin that spawns random minigames for all players to enter just clicking in the alert of the chat, easy, funny and rewarded!
How to join a RandomEvent? Just by clicking on the alert that is thrown when a random event is live!
*See the video in the media section!*
Features:
- Easy and interactive creation of arenas for events.
- Clickable alerts in chat to join the events.
- Inventory management. Stores in JSON files the inventory of the users that join to recover it after the event ends. Experience will not be lost too.
- Totally configurable events.
- Several minigames to choose for the events.
- For the rewards you can use probabilities, example: using "reprob 40 give %player% beacon 1" it will have a 40% probability of giving a beacon to a player when he wins.
- Multilanguage!
- Create tournaments with diferent levels and minigames totally configurable!
- Statistics and PlaceholderAPI hook for placeholders
- Quests compatibility to create win Random Events or participating in them quests.
- Complete particle system to add cool effects for the minigames.
- %randomevents_total_tries%
- %randomevents_total_wins%
- %randomevents_tries_game_<minigame>%
- %randomevents_wins_game_<minigame>%
Battle Royale -> BR
Battle Royale Team 2 -> BRT2
Knight Battle Royale -> LJ
Top Killer -> TKLL
Top Killer Team 2 -> TKLLT2
Knockback Duel -> KBD
Escape Arrow -> EARR
Gem Crawler -> GEMC
Bomb Tag -> BOMB
Boat Run -> BOAT_RUN
Escape From Beast -> ESCAPE_FROM_BEAST
Race -> RACE
TNT Run -> TNTRUN
Spleef -> SPLEEF
Splegg -> SPLEGG
One in the chamber -> OITC
Horse Run -> HORSE_RUN
Skywars -> SW
Team Skywars -> TSW
Survival Games -> SG
Team Survival Games -> TSG
Anvil Spleef -> ANVIL_SPLEEF
Water Drop -> WDROP
Example: %randomevents_tries_game_ESCAPE_FROM_BEAST%
Code (YAML):
#################################################################
# RandomEvents #
# Configuration #
#################################################################
debugMode: false
#Seconds to check if the probability match for a random event
secondsTimer: 60
#Seconds to check if the minimum players is fulfilled to begin the match
secondsCheckPlayers: 15
# Percentage of probability to spawn a random event each time the timer is fired
probabilityRandomEvent: 5
#Probability that the spawned random event is a tournament
probabilityRandomEventTournament: 5
#Teleport to the last location instead of spawn of the plugin
useLastLocation: false
#Number of annoucements the random event will do before being cancelled for lack of players
numberOfTriesBeforeCancelling: 10
#Force Empty Inventory to Join the RandomEvents
forceEmptyInventoryToJoin: false
#CAUTION. IT IS HIGHLY RECOMMENDED to let it true. If false, the plugin will not manage the items so players will join with own items and can lose them there.
#Some minigames might not work if its set to false (Splegg, TNT Tag...) as they need special items to work
inventoryManagement: true
#Drops items after dying in a minigame
dropItemsAfterDie: false
#Number of gems to win in gem crawler minigame
numberOfGems: 10
#Number of seconds you have to save the gems to win in gem crawler minigame
numberOfSecondsWithGems: 10
#Seconds to begin TNT_RUN so TNT will begin to disappear
warmupTimeTNTRUN: 5
#Seconds to begin the match when the min players are fulfilled (minimum 3 seconds)
secondsToStartMatch: 5
#Highest priority level of events. Enable this to bypass damage protection of faction plugins for example.
highestPriorityDamageEvents: false
#Optional titles for some messages such as the seconds remaining to begin a match, turn this to true if you want to see titles instead of messages in chat.
optionalTitles: false
#Maximum items in chests on Survival Games or Skywars minigames
maxItemOnChests: 10
#Minimum items in chests on Survival Games or Skywars minigames
minItemOnChests: 3
#Show world border in some minigames
showBorders: false
#Use particles in some minigames
useParticles: false
#Allowed configurable particles ->
#EXPLOSION_NORMAL || EXPLOSION_LARGE || EXPLOSION_HUGE || FIREWORKS_SPARK
#WATER_BUBBLE || WATER_SPLASH || WATER_WAKE || SUSPENDED
#SUSPENDED_DEPTH || CRIT || CRIT_MAGIC || SMOKE_NORMAL
#SMOKE_LARGE || SPELL || SPELL_INSTANT || SPELL_MOB
#SPELL_MOB_AMBIENT || SPELL_WITCH || DRIP_WATER || DRIP_LAVA
#VILLAGER_ANGRY || VILLAGER_HAPPY || TOWN_AURA || NOTE
#PORTAL || ENCHANTMENT_TABLE || FLAME || LAVA
#CLOUD || REDSTONE || SNOWBALL || SNOW_SHOVEL
#SLIME || HEART || BARRIER || ITEM_CRACK
#BLOCK_CRACK || BLOCK_DUST || WATER_DROP || MOB_APPEARANCE
#DRAGON_BREATH || END_ROD || DAMAGE_INDICATOR || SWEEP_ATTACK
particleDeath: 'EXPLOSION_NORMAL'
particleTNTTag: 'REDSTONE'
#Particles forms:
#blackSun(radius, radiusRate, rate, rateChange)
#circle(radius, rate)
#crescent(radius, rate)
#cylinder(height, radius, rate)
#diamond(radiusRate, rate, height)
#ellipse(radius, radius2, rate)
#eye(radius, radius2, rate, extension)
#filledCircle(radius, rate, radiusRate)
#illuminati(size, extension)
#infinity(radius, rate)
#ring(rate, radius, radius2)
#sphere(radius, rate)
#meguminExplosion(size)
#Use RANDOM to spawn one of the effects at a time randomly
particle:
type: sphere
size: 1.0
radius: 1.0
radiusRate: 1.0
radius2: 1.0
rate: 4.0
rateChange: 1.0
height: 1.0
extension: 4.0
tournament:
spawn:
world: world
x: 0.0
y: 60.0
z: 0.0
pitch: 0.0
yaw: 0.0
maxPlayers: 64
minPlayers: 20
numberOfRounds: 5
rewards:
- 'eco give %player% 10000'
#Probability to spawn a power up of resistance in arrow rain games
probabilityPowerUp: 1
#Minimum amount of players to begin checking for random events
minPlayers: 40
#Seconds for several minigames to damage all players if they are not attacking each other
idleTimeForDamage: 10
#Commands that will be done each time a user join a random event, use it in case you need to get the god mode off, to set the gamemode to survival, etc
commandsOnUserJoin:
- 'psa %player%'
#Commands that will be done when the match begin for all players, use it in case you need to get the god mode off, to set the gamemode to survival, etc
commandsOnMatchBegin:
- 'god %player% off'
#Allowed cmds in matchs. (DONT USE CAPS HERE)
allowedCmds:
- msg
- ac
- revent
- randomevent
#Spawn where the player will be teleported after minigame ends
spawn:
world: world
x: 0.0
y: 60.0
z: 0.0
pitch: 0.0
yaw: 0.0
#Enable MySQL to have statistics of the games!
mysql:
enabled: false
UUIDMode: false
host: localhost
port: 3306
database: database
username: user
password: password
API USAGE
It is a static api so you can use it as RandomEventsAPI.method()
Some examples:
Code (Java):
public static List<Match> getMatches();
public static MatchActive getMatch();
//TODO The API will grow up with the suggestions of the buyers
Event Supported:
Code (Java):
@EventHandler
public void onReventBegin(ReventBeginEvent event)
{
//TODO
}
@EventHandler
public void onReventEnd(ReventEndEvent event)
{
//TODO
}
There are several minigames you can configure and more are coming soon.
Here are a list of things you can configure with each minigame!
Battle Royale and Team Battle Royale:
A fierce battle where just 1 player or team can remain alive.
Top Killer and Team Top Killer:
Only the most powerful assasin can win this event, kill players to get points, the player with more points will get the rewards after <X> time of match.
Knight Battle:
A type of battle royale accompanied by your faithful horse. Be the last to stand to get the reward.
Knockback Duel / SUMO:
A battle where your attack power does not matter, you will have to make an strategy to get the enemies thrown away from the arena to get them killed! Be the last one who stands!
TNT Tag:
Run with the bomb and hit enemies to give it to them and avoid your own death. Each <X> time the bomb will explode and will get the player that had it and everyone near him dead.
Gem Carrier:
Random gems will spawn in the arena. Try to get all of them until you reach 10 gems or steal it from the enemies that has them. Stand 10 seconds more carrying your 10 gems and you will get your hands on the reward!
Boat Race:
Be the fastest sailor and reach the finish line before your pursuers!
Arrow Rain:
Avoid the arrows coming from the sky if you dont want to lose your head!
Races
Run and be the first to reach the goal to get your reward!
Run from the beast
The classic Run from the beast minigame! Beat the beast by completing all the scenario and get enough equipment to make damage to the beast!
TNT RUN
Run for your life, the tnt behind you will disappear, try to stay over them to win the match!
SPLEEF
Make the other players fall by breaking the blocks on their feets, be the one to stay safe to win the reward!
SPLEGG
Another type of Spleef but this time use your pistol to throw eggs that will break the floor!
One in the chamber
Game that arrows are letal, hit your enemies to get points and if you get out of arrows... Good luck!
Horse Run
Ride your horse and be the first to reach the goal to get your reward!
Skywars and Team Skywars
Fall in your island and search for your look to claim your victory!
Survival Games and Team Survival Games (Hunger Games)
Arm yourself to fight the enemies and get your reward!
Anvil Spleef
Avoid being smashed by anvils while looking at the floor disappearing because of them!
Water Drop
Multi Stage water drop. Be the first to handle all the maps and become the winner!
The creation of the arenas for the minigames are interactives and chat based, after the creation of the arena a JSON file is created. Thats an example:
That's a TNT Tag Event I configured for my server
Code (Text):
{
"name": "Cerezos",
"inventory": {
"contents": [
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
"{\"type\":\"TNT\"}",
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"helmet": "{\"type\":\"GOLD_HELMET\"}",
"chestplate": "{\"type\":\"GOLD_CHESTPLATE\"}"
},
"amountPlayers": 30,
"amountPlayersMin": 14,
"playerSpawn": "{\"x\":\"649997.5\",\"y\":\"67.0\",\"z\":\"69995.5\",\"pitch\":\"-1.7996404\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"-179.68677\"}",
"minigame": "BOMB_TAG",
"spawns": [
"{\"x\":\"849942.6233013485\",\"y\":\"67.0\",\"z\":\"89927.73323871447\",\"pitch\":\"7.6508527\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"2.9035645\"}",
"{\"x\":\"849952.8274692118\",\"y\":\"67.0\",\"z\":\"89925.06015923781\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849962.5356990774\",\"y\":\"67.0\",\"z\":\"89925.71500137949\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849971.2132088551\",\"y\":\"67.0\",\"z\":\"89925.70816136338\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849980.506399855\",\"y\":\"67.0\",\"z\":\"89925.70083277469\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849990.6059888965\",\"y\":\"67.0\",\"z\":\"89932.17361297162\",\"pitch\":\"2.8508506\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"44.153046\"}",
"{\"x\":\"849986.9802885945\",\"y\":\"67.0\",\"z\":\"90008.07018811424\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849977.0018465791\",\"y\":\"67.0\",\"z\":\"90008.5576920172\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849964.4671131066\",\"y\":\"67.0\",\"z\":\"90008.80183266044\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849952.632166835\",\"y\":\"67.0\",\"z\":\"90008.58068155173\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849938.4454556413\",\"y\":\"67.0\",\"z\":\"90006.37422375023\",\"pitch\":\"2.850844\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"212.30316\"}",
"{\"x\":\"849935.5775426377\",\"y\":\"66.0\",\"z\":\"89991.27123217548\",\"pitch\":\"1.5008457\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"248.45343\"}",
"{\"x\":\"849934.8928068962\",\"y\":\"64.0\",\"z\":\"89974.14895448094\",\"pitch\":\"9.000842\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"242.0036\"}",
"{\"x\":\"849933.1489896713\",\"y\":\"64.5\",\"z\":\"89961.97825100168\",\"pitch\":\"4.950843\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"293.1537\"}",
"{\"x\":\"849936.158493475\",\"y\":\"65.0\",\"z\":\"89951.1585638861\",\"pitch\":\"-1.3491566\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"318.35376\"}",
"{\"x\":\"849946.8489804546\",\"y\":\"66.0\",\"z\":\"89950.78232372824\",\"pitch\":\"3.9008417\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"342.8039\"}",
"{\"x\":\"849963.9885004557\",\"y\":\"66.0\",\"z\":\"89945.61372226676\",\"pitch\":\"0.15084317\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"10.104065\"}",
"{\"x\":\"849979.6396013942\",\"y\":\"65.0\",\"z\":\"89948.80924812988\",\"pitch\":\"13.350841\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"43.703857\"}",
"{\"x\":\"849987.4691091033\",\"y\":\"65.0\",\"z\":\"89960.21903509779\",\"pitch\":\"-0.5991617\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"86.75342\"}",
"{\"x\":\"849989.6457658826\",\"y\":\"64.0\",\"z\":\"89971.45483919822\",\"pitch\":\"-2.5491614\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"93.95355\"}",
"{\"x\":\"849988.1404826749\",\"y\":\"65.0\",\"z\":\"89981.60164109973\",\"pitch\":\"-1.3491594\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"107.4541\"}",
"{\"x\":\"849989.7066127106\",\"y\":\"65.0\",\"z\":\"89993.18868366316\",\"pitch\":\"-4.34916\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"114.354614\"}",
"{\"x\":\"849977.2192270755\",\"y\":\"67.0\",\"z\":\"89994.38951882365\",\"pitch\":\"3.9008374\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"151.10449\"}",
"{\"x\":\"849960.3646767023\",\"y\":\"65.0\",\"z\":\"89991.67482577314\",\"pitch\":\"6.300839\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"177.20471\"}",
"{\"x\":\"849944.5715873084\",\"y\":\"65.0\",\"z\":\"89990.24034125991\",\"pitch\":\"5.400838\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"215.30518\"}",
"{\"x\":\"849950.3854629751\",\"y\":\"65.0\",\"z\":\"89977.91542996567\",\"pitch\":\"4.350837\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"224.00531\"}",
"{\"x\":\"849953.5116295354\",\"y\":\"64.0\",\"z\":\"89967.75238404673\",\"pitch\":\"-5.6991644\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"280.8559\"}",
"{\"x\":\"849967.3626433255\",\"y\":\"65.0\",\"z\":\"89964.52508232334\",\"pitch\":\"-0.44915968\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"45.207153\"}",
"{\"x\":\"849969.589701893\",\"y\":\"65.0\",\"z\":\"89978.70911199847\",\"pitch\":\"0.90083975\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"121.40637\"}",
"{\"x\":\"849960.7656794582\",\"y\":\"64.0\",\"z\":\"89972.73255920268\",\"pitch\":\"-7.349162\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"125.45691\"}"
],
"spectatorSpawns": [
"{\"x\":\"849942.6233013485\",\"y\":\"100.0\",\"z\":\"89927.73323871447\",\"pitch\":\"7.6508527\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"2.9035645\"}",
"{\"x\":\"849952.8274692118\",\"y\":\"100.0\",\"z\":\"89925.06015923781\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849962.5356990774\",\"y\":\"100.0\",\"z\":\"89925.71500137949\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849971.2132088551\",\"y\":\"100.0\",\"z\":\"89925.70816136338\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849980.506399855\",\"y\":\"100.0\",\"z\":\"89925.70083277469\",\"pitch\":\"1.6508507\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"359.9034\"}",
"{\"x\":\"849990.6059888965\",\"y\":\"100.0\",\"z\":\"89932.17361297162\",\"pitch\":\"2.8508506\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"44.153046\"}",
"{\"x\":\"849986.9802885945\",\"y\":\"100.0\",\"z\":\"90008.07018811424\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849977.0018465791\",\"y\":\"100.0\",\"z\":\"90008.5576920172\",\"pitch\":\"-1.0491552\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"173.30298\"}",
"{\"x\":\"849964.4671131066\",\"y\":\"100.0\",\"z\":\"90008.80183266044\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849952.632166835\",\"y\":\"100.0\",\"z\":\"90008.58068155173\",\"pitch\":\"1.2008446\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"185.45337\"}",
"{\"x\":\"849938.4454556413\",\"y\":\"100.0\",\"z\":\"90006.37422375023\",\"pitch\":\"2.850844\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"212.30316\"}",
"{\"x\":\"849935.5775426377\",\"y\":\"100.0\",\"z\":\"89991.27123217548\",\"pitch\":\"1.5008457\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"248.45343\"}",
"{\"x\":\"849934.8928068962\",\"y\":\"100.0\",\"z\":\"89974.14895448094\",\"pitch\":\"9.000842\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"242.0036\"}",
"{\"x\":\"849933.1489896713\",\"y\":\"100.5\",\"z\":\"89961.97825100168\",\"pitch\":\"4.950843\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"293.1537\"}",
"{\"x\":\"849936.158493475\",\"y\":\"100.0\",\"z\":\"89951.1585638861\",\"pitch\":\"-1.3491566\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"318.35376\"}",
"{\"x\":\"849946.8489804546\",\"y\":\"100.0\",\"z\":\"89950.78232372824\",\"pitch\":\"3.9008417\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"342.8039\"}",
"{\"x\":\"849963.9885004557\",\"y\":\"100.0\",\"z\":\"89945.61372226676\",\"pitch\":\"0.15084317\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"10.104065\"}",
"{\"x\":\"849979.6396013942\",\"y\":\"100.0\",\"z\":\"89948.80924812988\",\"pitch\":\"13.350841\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"43.703857\"}",
"{\"x\":\"849987.4691091033\",\"y\":\"100.0\",\"z\":\"89960.21903509779\",\"pitch\":\"-0.5991617\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"86.75342\"}",
"{\"x\":\"849989.6457658826\",\"y\":\"100.0\",\"z\":\"89971.45483919822\",\"pitch\":\"-2.5491614\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"93.95355\"}",
"{\"x\":\"849988.1404826749\",\"y\":\"100.0\",\"z\":\"89981.60164109973\",\"pitch\":\"-1.3491594\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"107.4541\"}",
"{\"x\":\"849989.7066127106\",\"y\":\"100.0\",\"z\":\"89993.18868366316\",\"pitch\":\"-4.34916\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"114.354614\"}",
"{\"x\":\"849977.2192270755\",\"y\":\"100.0\",\"z\":\"89994.38951882365\",\"pitch\":\"3.9008374\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"151.10449\"}",
"{\"x\":\"849960.3646767023\",\"y\":\"100.0\",\"z\":\"89991.67482577314\",\"pitch\":\"6.300839\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"177.20471\"}",
"{\"x\":\"849944.5715873084\",\"y\":\"100.0\",\"z\":\"89990.24034125991\",\"pitch\":\"5.400838\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"215.30518\"}",
"{\"x\":\"849950.3854629751\",\"y\":\"100.0\",\"z\":\"89977.91542996567\",\"pitch\":\"4.350837\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"224.00531\"}",
"{\"x\":\"849953.5116295354\",\"y\":\"100.0\",\"z\":\"89967.75238404673\",\"pitch\":\"-5.6991644\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"280.8559\"}",
"{\"x\":\"849967.3626433255\",\"y\":\"100.0\",\"z\":\"89964.52508232334\",\"pitch\":\"-0.44915968\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"45.207153\"}",
"{\"x\":\"849969.589701893\",\"y\":\"100.0\",\"z\":\"89978.70911199847\",\"pitch\":\"0.90083975\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"121.40637\"}",
"{\"x\":\"849960.7656794582\",\"y\":\"100.0\",\"z\":\"89972.73255920268\",\"pitch\":\"-7.349162\",\"uuid\":\"71cf6352-fb5f-44b6-9257-41b542bb5e90\",\"yaw\":\"125.45691\"}"
],
"secondsMobSpawn": 20.0,
"rewards": [
"dubilets give %player% 1"
]
}
You can use /revent and /randomevents aliases.
- /revent : Shows the commands help menu.
- /revent stats : Shows the GUI for the stats
- /revent join <password> : Thats not a command you will use manually. it will be done when you click the alert of the chat. The alert has the password associated to the random event.
- /revent spec: Command to spectate match
- /revent tjoin <password> : The same as join but for tournaments
- /revent leave : Use it to leave the random event when you are on the lobby or spectator mode.
- /revent tleave : The same but for tournaments
- /revent stats: Shows the stats
- /revent stats <player>: Shows the stats of a player
- /revent forcestop: Force the stop of the minigame.
- /revent spawnset: Set the spawn where the players will return after the event ends.
- /revent tspawnset: Set the spawn where the players go when waiting for a tournament
- /revent schedule <monday:tuesday...> <hour> <minute> : Create a schedule for a random event
- /revent schedule <monday:tuesday...> <hour> <minute> <idevent>: Create a schedule for a specific random event
- /revent matches/list: Show all the matches configurated with their ids.
- /revent begin : Force the beginning of a random event.
- /revent tbegin : Force the beginning of a tournament random event.
- /revent begin <id> : Force the beginning of the random event with that id
- /revent givecredits <player> <amount>: Give a amount of credits to force the beginning of a Random Event.
- /revent givecredits <event> <player> <amount>: Give a amount of credits to force the beginning of a specific Random Event.
- /revent credits: See balance of credits you have
- /revent credits <player>: See credits of a player
- /revent gui: Open the gui to force a Random Event
- /revent ban <player> <time> : Ban a player from RandomEvents
- /revent unban <player> : Unban a player from RandomEvents
- /revent create : Begin the creation of an arena for a random event.
- /revent delete: Deletes a random event.
- /revent disable: Disables a random event.
- /revent enable: Enables a random event.
- /revent edit <number>: Begin the edition of an arena for a random event.
- /revent cancel: Cancel the creation of a random event.
- /revent reload: Reloads the plugin.
- randomevent.join : Perm to see the alerts to join the random events
- randomevent.spec : Perm to spectate events
- randomevent.leave : Perm to use /revent leave
- randomevent.stats : Perm to use /revent stats
- randomevent.tjoin : Perm to see the alerts to join the tournament random events
- randomevent.tleave : Perm to use /revent tleave
- randomevent.stats: Perm to use /revent stats
- randomevent.stats.other: Perm to use /revent stats <player>
- randomevent.give.credits: Perm to use /revent givecredits...
- randomevent.bal.credits: Perm to use /revent bal
- randomevent.bal.credits.other: Perm to use /revent bal <player>
- randomevent.gui: Perm to use /revent gui
- randomevent.gui.cooldown: Perm to use /revent gui and force events without credits with a cooldown
- randomevent.gui.cooldown.bypass: Perm to use /revent gui and force events without credits or cooldown
- randomevent.admin.forcestop: Perm to use /revent forcestop
- randomevent.admin.schedule : Perm to use /revent schedule
- randomevent.admin.spawnset: Perm to use /revent spawnset
- randomevent.admin.tspawnset: Perm to use /revent tspawnset
- randomevent.admin.matches: Perm to use /revent matches
- randomevent.admin.force: Perm to use /revent begin
- randomevent.admin.ban: Perm to use /revent ban <player> <time>
- randomevent.admin.unban: Perm to use /revent unban <player>
- randomevent.admin.create: Perm to use /revent create
- randomevent.admin.delete: Perm to use /revent delete
- randomevent.admin.disable: Perm to use /revent disable
- randomevent.admin.enable: Perm to use /revent enable
- randomevent.admin.edit: Perm to use /revent edit <number>
- randomevent.admin.cancel: Perm to use /revent cancel
- randomevent.admin.reload: Perm to use /revent reload
Servers using it:
- mc.survivaldub.com (Prision)
2.- Run the server
3.- Execute the command /revent spawnset and begin creating random events with the /revent create command!
Metrics collection
This plugin collects anonymous server statistics through bStats, an open-source Minecraft statistics service.
If you'd like to disable metrics collection via bStats, you can edit the plugins/bStats/config.yml file.
View attachment 48rY1k0