RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
LMSCrateLocation.java
1
package
com.osroyale.content.lms.crate;
2
3
import
com.osroyale.game.world.position.Position;
4
31
32
public
enum
LMSCrateLocation {
33
34
DEBTOR_HIDEOUT_NORTH(
new
Position
(3409, 5819, 0),
"near the Debtor hideout"
),
35
DEBTOR_HIDEOUT_EAST(
new
Position
(3421, 5801, 0),
"near the Debtor hideout"
),
36
MOUNTAIN(
new
Position
(3450, 5852, 0),
"near the mountain"
),
37
MOSER_SETTLEMENT_NORTH(
new
Position
(3479, 5809, 0),
"near the Moser settlement"
),
38
MOSER_SETTLEMENT_EAST(
new
Position
(3494, 5791, 0),
"near the Moser settlement"
),
39
MOSER_SETTLEMENT_WEST(
new
Position
(3459, 5789, 0),
"near the Moser settlement"
),
40
ROCKY_OUTPOST(
new
Position
(3459, 5772, 0),
"near the Rocky outcrop"
),
41
TRINITY_OUTPOST(
new
Position
(3480, 5876, 0),
"near the Trinity outpost"
);
42
43
public
Position
location;
44
public
String tip;
45
46
LMSCrateLocation(
Position
location, String tip) {
47
this.location = location;
48
this.tip = tip;
49
50
}
51
52
}
com.osroyale.game.world.position.Position
Definition
Position.java:51