RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
PlayerOption.java
1package com.osroyale.game.world.entity.mob.player;
2
40
41public enum PlayerOption {
42
44 DUEL_REQUEST(1, "Challenge"),
45
47 ATTACK(2, "Attack"),
48
50 FOLLOW(3, "Follow"),
51
53 TRADE_REQUEST(4, "Trade with"),
54
56 REPORT(5, "Report"),
57
59 VIEW_PROFILE(5, "View profile"),
60 GAMBLE_REQUEST(6, "Gamble with"),
61 ;
62
64 private final int index;
65
67 private final String name;
68
78 PlayerOption(int index, String name) {
79 this.index = index;
80 this.name = name;
81 }
82
88 public int getIndex() {
89 return index;
90 }
91
97 public String getName() {
98 return name;
99 }
100
101}