RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ToolWriter.java
1package com.osroyale.content.writer.impl;
2
3import com.osroyale.content.writer.InterfaceWriter;
4import com.osroyale.game.world.entity.mob.player.Player;
5
31
32public class ToolWriter extends InterfaceWriter {
33
34 private final String[] text = {
35 "View My Profile",
36 "Activity Logger",
37 "Title Manager",
38 "Drop Display",
39 "Drop Simulator",
40 "Game Records",
41 };
42
43 public ToolWriter(Player player) {
44 super(player);
45 }
46
47 @Override
48 protected int startingIndex() {
49 return 35451;
50 }
51
52 @Override
53 protected String[] text() {
54 return text;
55 }
56
57 @Override
58 protected int[][] color() {
59 return null;
60 }
61
62 @Override
63 protected int[][] font() {
64 return null;
65 }
66
67}