1package com.osroyale.net.packet.out;
3import com.osroyale.game.world.World;
4import com.osroyale.game.world.entity.mob.player.Player;
5import com.osroyale.net.packet.OutgoingPacket;
6import com.osroyale.net.packet.PacketType;
30public class SendMarquee
extends OutgoingPacket {
32 private final String[] strings;
35 public SendMarquee(
int id, String... strings) {
37 this.strings = strings;
42 public boolean encode(
Player player) {
44 for (
int index = 0; index < 5; index++) {
45 builder.writeString(index >= strings.length
static int getPlayerCount()