RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendSpecialAmount.java
1
package
com.osroyale.net.packet.out;
2
3
import
com.osroyale.game.world.entity.mob.player.Player;
4
import
com.osroyale.net.packet.OutgoingPacket;
5
29
30
public
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
}
com.osroyale.game.world.entity.mob.player.Player
Definition
Player.java:162