RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendSpecialAmount.java
1package com.osroyale.net.packet.out;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4import com.osroyale.net.packet.OutgoingPacket;
5
29
30public final class SendSpecialAmount extends OutgoingPacket {
31
32 public SendSpecialAmount() {
33 super(137, 1);
34 }
35
36 @Override
37 public boolean encode(Player player) {
38 builder.writeByte(player.getSpecialPercentage().get());
39 return true;
40 }
41
42}