mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 08:39:11 +00:00
12 lines
392 B
Kotlin
12 lines
392 B
Kotlin
import org.apollo.game.model.entity.setting.PrivilegeLevel
|
|
|
|
on_command("broadcast", PrivilegeLevel.ADMINISTRATOR)
|
|
.then { player ->
|
|
val message = arguments.joinToString(" ")
|
|
val broadcast = "[Broadcast] ${player.username.capitalize()}: $message"
|
|
|
|
player.world.playerRepository.forEach { other ->
|
|
other.sendMessage(broadcast)
|
|
}
|
|
}
|