This commit is contained in:
TheTechRobo 2022-08-26 15:28:09 -04:00
commit 2187304c4f
9 changed files with 144 additions and 0 deletions

38
.classpath Normal file
View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

23
.project Normal file
View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>troll_the_afks</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning

View File

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

4
plugin.yml Normal file
View File

@ -0,0 +1,4 @@
name: AntiAFK
main: troll_the_afks.TrollThoseWhoAreAFKPlugin
version: 1.0
api-version: 1.19

25
pom.xml Normal file
View File

@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ca.thetechrobo.mc.trollTheAfks</groupId>
<artifactId>troll_the_afks</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Troll The AFKs</name>
<description>Broadcast AFK peoples' coordinates in chat. Requires Purpur.</description>
<repositories>
<!-- This adds the Spigot Maven repository to the build -->
<repository>
<id>purpur-repo</id>
<url>https://repo.purpurmc.org/snapshots</url>
</repository>
</repositories>
<dependencies>
<!--This adds the Purpur API artifact to the build -->
<dependency>
<groupId>org.purpurmc.purpur</groupId>
<artifactId>purpur-api</artifactId>
<version>1.19.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,34 @@
package troll_the_afks;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.purpurmc.purpur.event.PlayerAFKEvent;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.TextComponent;
import net.kyori.adventure.text.format.TextColor;
public class EventMgr implements Listener {
@EventHandler
public void onPlayerAfk(PlayerAFKEvent e) {
if (!e.isGoingAfk()) {
// The player is coming back from AFK, not going AFK
return;
}
Player p = e.getPlayer();
Location loc = p.getLocation();
Component username = p.displayName()
.color(TextColor.color(0, 55, 255));
int x = loc.getBlockX();
int y = loc.getBlockY();
int z = loc.getBlockZ();
TextComponent comp = Component.text("Player ").color(TextColor.color(20, 165, 135))
.append(username)
.append(Component.text(" is AFK at ").color(TextColor.color(200, 20, 100)))
.append(Component.text("[" + x + ", " + y + ", " + z + "]"));
Bukkit.broadcast(comp);
}
}

View File

@ -0,0 +1,13 @@
package troll_the_afks;
import org.bukkit.plugin.java.JavaPlugin;
public class TrollThoseWhoAreAFKPlugin extends JavaPlugin {
@Override
public void onEnable() {
getServer().getPluginManager().registerEvents(new EventMgr(), this);
}
@Override
public void onDisable() {
}
}