This commit is contained in:
rattatwinko
2025-05-01 15:30:06 +02:00
commit d2c6430af7
4 changed files with 314 additions and 0 deletions

113
.gitignore vendored Normal file
View File

@@ -0,0 +1,113 @@
# User-specific stuff
.idea/
*.iml
*.ipr
*.iws
# IntelliJ
out/
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
.flattened-pom.xml
# Common working directory
run/

87
pom.xml Normal file
View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.Sahur</groupId>
<artifactId>Sahur</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Sahur</name>
<properties>
<java.version>21</java.version>
<kotlin.version>2.2.0-Beta2</kotlin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>clean package</defaultGoal>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>${java.version}</jvmTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.21.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,104 @@
package org.Sahur.sahur
import org.bukkit.*
import org.bukkit.command.*
import org.bukkit.enchantments.Enchantment
import org.bukkit.entity.Player
import org.bukkit.event.*
import org.bukkit.event.player.PlayerInteractEvent
import org.bukkit.event.entity.EntityDamageEvent
import org.bukkit.inventory.*
import org.bukkit.inventory.meta.ItemMeta
import org.bukkit.metadata.FixedMetadataValue
import org.bukkit.plugin.java.JavaPlugin
import org.bukkit.util.Vector
class Sahur : JavaPlugin(), Listener {
override fun onEnable() {
logger.info("Sahur is enabled!")
server.pluginManager.registerEvents(this, this)
getCommand("sahur")?.setExecutor(SahurCommand())
}
override fun onDisable() {
logger.info("Sahur is disabled!")
}
inner class SahurCommand : CommandExecutor {
override fun onCommand(sender: CommandSender, command: Command, label: String, args: Array<out String>): Boolean {
if (sender !is Player) {
sender.sendMessage("${ChatColor.RED}Player-only command!")
return true
}
if (!sender.isOp) {
sender.sendMessage("${ChatColor.RED}You don't have permission to use this command!")
return true
}
val sahurStick = createSahurStick()
sender.inventory.addItem(sahurStick)
sender.sendMessage("${ChatColor.GREEN}You have received the ${ChatColor.GOLD}Sahur Stick!")
return true
}
}
private fun createSahurStick(): ItemStack {
val stick = ItemStack(Material.STICK)
val meta = stick.itemMeta ?: return stick
meta.setDisplayName("${ChatColor.GOLD}${ChatColor.BOLD}TUNG TUNG TUNG SAHUR")
meta.lore = listOf(
"${ChatColor.DARK_RED}${ChatColor.BOLD}☀ TUNG TUNG TUNG SAHUR ☀",
"${ChatColor.AQUA}Certified by Sahur Gang™",
"",
"${ChatColor.RED}${ChatColor.BOLD}TUNG TUNG TUNG!!!"
)
meta.addItemFlags(ItemFlag.HIDE_ENCHANTS, ItemFlag.HIDE_ATTRIBUTES)
meta.isUnbreakable = true
stick.itemMeta = meta
stick.addUnsafeEnchantment(Enchantment.KNOCKBACK, 255)
stick.addUnsafeEnchantment(Enchantment.FIRE_ASPECT, 10)
stick.addUnsafeEnchantment(Enchantment.SWEEPING_EDGE, 10)
return stick
}
@EventHandler
fun onRightClick(event: PlayerInteractEvent) {
val player = event.player
val item = player.inventory.itemInMainHand
if (item.type == Material.STICK && item.itemMeta?.displayName?.contains("SAHUR") == true) {
if (event.action.toString().contains("RIGHT_CLICK")) {
// Launch player forward
val direction: Vector = player.location.direction.multiply(2.5).setY(1.0)
player.velocity = direction
player.playSound(player.location, Sound.ENTITY_FIREWORK_ROCKET_LAUNCH, 1f, 1.2f)
// Temporarily mark to prevent fall damage
player.setMetadata("no_fall_sahur", FixedMetadataValue(this, true))
// Remove metadata after 3 seconds (fall time)
server.scheduler.runTaskLater(this, Runnable {
if (player.hasMetadata("no_fall_sahur")) {
player.removeMetadata("no_fall_sahur", this)
}
}, 60L) // 60 ticks = 3 seconds
}
}
}
@EventHandler
fun onFallDamage(event: EntityDamageEvent) {
if (event.entity is Player && event.cause == EntityDamageEvent.DamageCause.FALL) {
val player = event.entity as Player
if (player.hasMetadata("no_fall_sahur")) {
event.isCancelled = true
}
}
}
}

View File

@@ -0,0 +1,10 @@
name: Sahur
version: 1.0
main: org.Sahur.sahur.Sahur
api-version: 1.20
commands:
sahur:
description: Gives the player a Sahur stick
usage: /sahur
permission: sahur.use
permission-message: You don't have permission to use this command.