Skip to content

Simple Bedwars. It has an arena creation system and the game system itself.

Notifications You must be signed in to change notification settings

Orlej1k/Bedwars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Download Version

About

Creating game: when you create a new game, a new world is created with the name BW-(id), for example BW-1 (or overwritten if it already exists in the server folder)

Game logic: there are only 4 teams. All players are divided into teams, each team has a bed. If the player dies, he will spawn after some time (which is set in the config). If the bed is broken, he will simply turn into a spectator. There is also a system of drop spawners, there are 4 spawners in total (iron, gold, diamond and emerald). The player can break/noPut only some blocks (which were set in the config, for example: wool and red bed)

Commands

- /bw - check commands.

- /bw create - create the game(arena).

- /bw join - join the game.

- /bw quit - quit the game.

- /bw getItem - get spawner item(iron, gold, etc).

- /bw tp - tp to the original world.

- /bw list - list of arenas.

Permissions

- bw.create - allows to create the arena.

- bw.join - allows to join the arena.

- bw.delete - allows to delete the arena.

- bw.tp - allows to tp to the original world.

- bw.getItem - allows to get spawner item(iron, gold, etc).

Configs

- blocks.yml

You can put the blocks you want players to be able to break/place

canBreak - player can break block

NoPlace - player can't place block

You must use only blocks from this list

- locations.yml

You must insert the spawnpoint of the team and location of the bed into this config (since the bed is divided into two blocks, you need to insert the coordinates of these two blocks)

- other.yml

It's time after death

- spawnerLocations.yml

As said in "about" the game has 4 types of item spawner (iron, gold, diamond, emerald). Here you can add spawners for each type

  IRON:
    timeForDrop: 10
    spawnItems: 4
    Spawner1:
      X: 8
      Y: 14
      Z: -54

timeForDrop - seconds for drop

spawnItems - amount of items

If you want to add another spawner, just create (add) it to the config

For example:

  IRON:
    timeForDrop: 10
    spawnItems: 4
    Spawner1:
      X: 8
      Y: 14
      Z: -54
    Spawner2:
      X: 0
      Y: 0
      Z: 0

The name of the new spawner can be anything except timeForDrop and spawnItems. That is, you can write something else instead of Spawner2

Important

You must rename the game map to 'world_bedwars'

Developers

About

Simple Bedwars. It has an arena creation system and the game system itself.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages