RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendWalkableInterface.java
1package com.osroyale.net.packet.out;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4import com.osroyale.net.packet.OutgoingPacket;
5
25
26public class SendWalkableInterface extends OutgoingPacket {
27
28 private final int id;
29
30 public SendWalkableInterface(int id) {
31 super(208, 2);
32 this.id = id;
33 }
34
35 @Override
36 public boolean encode(Player player) {
37 builder.writeShort(id);
38 return true;
39 }
40
41}