RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendURL.java
1package com.osroyale.net.packet.out;
2
3import com.osroyale.net.packet.OutgoingPacket;
4import com.osroyale.net.packet.PacketType;
5import com.osroyale.game.world.entity.mob.player.Player;
6
33
34public class SendURL extends OutgoingPacket {
35
36 private final String link;
37
38 public SendURL(String link) {
39 super(138, PacketType.VAR_BYTE);
40 this.link = link;
41 }
42
43 @Override
44 public boolean encode(Player player) {
45 builder.writeString(link);
46 return true;
47 }
48
49}