| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is my repository for my own plugins for BlueLite.
You can join their Discord via the following URL: https://discord.gg/mezdbNZ
Please direct any help / support / inquires / requests there as well.
Socket is a peer to peer connection plugin.
Users join a server room and broadcast messages amongst each other.
Server Address:
Description: The IP address or host name of the server to connect to. Default: socket.kthisiscvpv.com
Server Port:
Description: The open port number of the server. Default: 25340
Server Room:
Description: A valid positive integer (per Java's defination) that depicts a room number to join on the server. Default: 1
Shared Password:
Description: A password shared between your peers to encrypt and decrypt the bounding packets. Default: Randomally Generated
To listen to packets being sent on the network, create an event listener on SocketReceivePacket.
@Subscribe
public void onSocketReceivePacket(SocketReceivePacket event) {
try {
JSONObject payload = event.getPayload();
System.out.println(payload.toString(4));
} catch (Exception e) {
e.printStackTrace();
}
}
To send packets to the network, invoke an event on SocketBroadcastPacket.
...
JSONObject payload = new JSONObject();
payload.put("my-name", "Charles");
eventBus.post(new SocketBroadcastPacket(payload));
...
A standalone extension of the Theatre of Blood plugins. This plugin will send and receive all mazes amongst those in your domain.
Socket Client Plugin
Maze Color:
Description: The color of the maze being sent and drawn. Default: GREEN
Stroke Size:
Description: The size of the stroke when drawing the tiles. Default: 1
A standalone extension of the default Special Attack Counter plugin. This plugin will send and receive all special attacks amongst those in your domain.
Socket Client Plugin
Special Attack Counter
Hit Overlay:
Description: Show the special attack overlay. Default: true
Fade Delay:
Description: Delay, in milliseconds, until the icon disappears. Default: 5000ms
Travel Height:
Description: Maximum height, in pixels, for the icon to travel. Default: 200px
| Back | FazBrowse Home | New Git URL |