particle api for spigot plugins

Overview

hParticleAPI

public class ExampleParticle extends JavaPlugin {

    private ParticleAPI particleAPI;

    @Override
    public void onEnable() {
        this.particleAPI = ParticleAPI.getInstance(this);
    }

    public ParticleAPI getParticleAPI() {
        return this.particleAPI;
    }

    @Override
    public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
        Player player = (Player) sender;

        if (command.getName().equals("sendtoplayer")) {
            this.particleAPI.send(player, player.getLocation(), new Particle("CLOUD", 1, 1, new Vector(0.1, 0.1, 0.1)));
        } else if (command.getName().equals("sendtoall")) {
            this.particleAPI.sendAll(player.getLocation(), new Particle("CLOUD", 1, 1, new Vector(0.1, 0.1, 0.1)));
        }
        return false;
    }
}
You might also like...

Totally Spigot 1.17

"""Spigot 1.17""" Thanks for all the rages, but Spigot 1.17 is now officially available and can be obtained by using BuildTools! See this for more inf

Jun 3, 2022

simple spigot plugin malware remover, made in 10 minutes lol

spigot-malware-remover Simple spigot plugin malware remover made in 10 minutes, using ASM bytecode manipulation library. Compile it using maven, if yo

Oct 29, 2022

An advanced 1.8.8 spigot backdoor.

CelestialBackdoor An advanced 1.8.8 spigot backdoor. This backdoor contains a plethora of commands to execute. This backdoor supports commands for Dis

Jan 19, 2022

Unnerved by 1.18 fog? This Spigot plugin will remove it!

Unnerved by 1.18 fog? This Spigot plugin will remove it!

ClearFog Are you also unnerved by the new 1.18 fog system? And you tried to increase the server view distance? You don't have to! This Spigot plugin "

Dec 19, 2022

Plugin with helpful tools for factions, made to be used beside atlas spigot.

AtlasUtils Plugin with helpful tools for factions, made to be used beside atlas spigot. Features: Config: Found in your plugins folder at AtlasUtils/c

Dec 24, 2021

A Spigot plugin to edit block properties and more.

BoneTool BoneTool is a tool created to edit block properties with many features for builders. This is a creative tool developed as a package of featur

Jan 6, 2022

Spigot plugin with a bunch of quite useful commands in it!

Spigot plugin with a bunch of quite useful commands in it!

QuiteUsefulCommands Spigot plugin with a bunch of quite useful commands in it. Install Download the latest release and drag it into your server's plug

Aug 20, 2022

A simple Bingo Plugin for Spigot 1.18.1

A simple Bingo Plugin for Spigot 1.18.1

Bingo The first one to find 4 items in a line wins A simple Bingo Plugin for Spigot 1.18.1 Preview Commands /board - Prints out the Bingo Board to the

Jun 19, 2022

A Spigot plugin that tracks statistics with InfluxDB for timescale analytics.

A Spigot plugin that tracks statistics with InfluxDB for timescale analytics.

RiceStats I made this plugin for my SMP server. It's able to track statistics and send it to InfluxDB where it can be processed by an analytics progra

Dec 24, 2022
Owner
Hakan Kargın
Hakan Kargın
💜 LiteSkullAPI Fast and extensive skull library for Bukkit/Spigot/Paper plugins

?? LiteSkullAPI Fast and extensive skull library for Bukkit/Spigot/Paper plugins. Helpful links: Support Discord GitHub issues Eternal Repository (Mav

Norbert Dejlich 16 Dec 2, 2022
Backdoor injector for Bukkit/Spigot plugins.

MinePatcher Backdoor injector for Bukkit/Spigot plugins. MinePatcher was developed to test the security systems of Minecraft servers. Usage: 1. Window

null 3 Sep 18, 2022
It's a particle system only appliaction. Made with LWJGL (OpenGL and GLFW for Java) and ImGui.

ParticleParty It's a particle system only appliaction. Made with LWJGL (OpenGL and GLFW for Java) and ImGui. How To Use Move the camera with ctrl + W/

Ahmet Aydogan 2 Jan 8, 2022
A small Reactive API with RxJava for Minecraft Paper Plugins.

RxPaper A small Reactive API with RxJava for Minecraft Paper Plugins. Usage RxPaper.io() When you want to return something back in the Minecraft Threa

Julian Haag 7 Dec 9, 2021
Add an event on Spigot API to listen to players kill a player with EnderCrystal

(Minecraft) Add an event on Spigot API to listen to players kill a player with EnderCrystal

Guang_Chen_ 4 Dec 22, 2022
Minecraft Forge Hybrid server implementing the Spigot/Bukkit API (Cauldron for 1.18)

❓ About Magma is the next generation of hybrid minecraft server softwares. Magma is based on Forge and Paper, meaning it can run both Craftbukkit/Spig

Magma Foundation 12 Apr 18, 2022
Minecraft plugins with Java.

Minecraft plugins with Java.

null 2 Feb 22, 2022
Blocking the your minecraft plugins to show from server member

BSP Blocking your minecraft server plugins to show. 한국어 README Features Blocking your minecraft server plugins to show. Custom Events. Install Install

Plma75 2 Jan 22, 2022
[Minecraft] Configs from Spigot core

SpigotConfigLibrary [Minecraft] Configs from Spigot core English This is a cut-out piece of config code from the Spigot core. You can use it for conve

Charles_Grozny 5 Sep 9, 2022
Minecraft Spigot 1.16 - plugin for compass tracking other players. MVP contains tracking closest player available.

Compass Tracker Overview Minecraft Spigot 1.16 Plugin. Plugin sets compass target to closest player in the overworld. Created to use with my friends t

INNIX 3 Nov 15, 2021