Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intellectualsites/fastasyncvoxelsniper
Voxel Sniper fork for modern Minecraft versions utilizing the improvements of FastAsyncWorldEdit
https://github.com/intellectualsites/fastasyncvoxelsniper
async favs fawe hacktoberfest minecraft paper spigot voxelsniper worldedit
Last synced: 7 days ago
JSON representation
Voxel Sniper fork for modern Minecraft versions utilizing the improvements of FastAsyncWorldEdit
- Host: GitHub
- URL: https://github.com/intellectualsites/fastasyncvoxelsniper
- Owner: IntellectualSites
- License: gpl-3.0
- Created: 2019-11-02T14:00:46.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T05:06:14.000Z (3 months ago)
- Last Synced: 2024-10-29T10:34:52.377Z (3 months ago)
- Topics: async, favs, fawe, hacktoberfest, minecraft, paper, spigot, voxelsniper, worldedit
- Language: Java
- Homepage:
- Size: 21.2 MB
- Stars: 73
- Watchers: 6
- Forks: 24
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# FastAsyncVoxelSniper
[![Join us on Discord](https://img.shields.io/discord/268444645527126017.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/intellectualsites)
[![bStats Servers](https://img.shields.io/bstats/servers/6405)](https://bstats.org/plugin/bukkit/FastAsyncVoxelSniper/6405)
[![Crowdin](https://badges.crowdin.net/e/387f461acd0dfa902cb510bc3da3e0e3/localized.svg)](https://intellectualsites.crowdin.com/fastasyncvoxelsniper)This is a fork of [VoxelSniper](https://github.com/TVPT/VoxelSniper). It adds support for newer versions of [Spigot](https://www.spigotmc.org/) and [Paper](https://papermc.io/) keeping available all features from original version of plugin, but with optimizations and code cleanup.
### What is FAVS and why should I use it?
FAVS is designed for efficient terrain creation.
- VoxelSniper is the premier long range map editing tool for Minecraft. This mod allows you to edit any block that you can see using an arrow (for replacing) and a gunpowder (for adding).
- It is best used by those with a strong attention to detail and
fits a wide array of applications, from making detailed edits to structures with the snipe brush, to making massive terraforming jobs a breeze with some of the earth shattering soft selection tools.
- FastAsyncVoxelSniper allows you to perform operations asynchronously, so you can let a lot of people perform many voxel
operations with ease and not hanging your server.
- Simple to setup and use
- Extremely configurable
- Uses minimal CPU/Memory
- Safe for many players to use
- Insanely fast, when using the slowest mode
- Hooks into FAWE to utilize its async features and respects the same protection plugins like FAWE.## Downloads
The primary download is available on [Modrinth](https://modrinth.com/plugin/fastasyncvoxelsniper/).
Alternative downloads are available on [Hangar](https://hangar.papermc.io/IntellectualSites/FastAsyncVoxelSniper) and
[CurseForge](https://www.curseforge.com/minecraft/bukkit-plugins/favs).## Documentation
* [Wiki](https://intellectualsites.github.io/fastasyncvoxelsniper-documentation/)
* [Translations](https://intellectualsites.crowdin.com/fastasyncvoxelsniper)
* [JavaDocs](https://intellectualsites.github.io/fastasyncvoxelsniper-javadocs/)## Contributing
See [here](https://github.com/IntellectualSites/.github/blob/main/CONTRIBUTING.md)## Maven Deployment
Releases are published to the central repository, snapshots are published to S01 OSS Sonatype.Replace `VERSION` with the version you want to use.
### Gradle
```kotlin
repositories {
mavenCentral()
}dependencies {
compileOnly("com.intellectualsites.fastasyncvoxelsniper:fastasyncvoxelsniper:VERSION")
}
```### Maven
```xmlcom.intellectualsites.fastasyncvoxelsniper
fastasyncvoxelsniper
VERSION
provided```