RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ShootingStarLocations.java
1package com.osroyale.content.shootingstar;
2
3import com.osroyale.game.world.position.Position;
4
20
21public enum ShootingStarLocations {
22 FALADOR(new Position(3053, 3301, 0), new String[] { "Falador farming patches", "at the" }),
23 EDGEVILLE(new Position(3100, 3484, 0), new String[] { "Edgeville bank", "near" }),
24 GNOME_AGILITY_COURSE(new Position(2480, 3433, 0), new String[] { "Gnome agility course", "by the" }),
25 WILDERNESS_AGILITY_COURSE(new Position(2995, 3911, 0), new String[] { "Wildy agility course", "outside the" }),
26 WEST_DRAGONS(new Position(2986, 3599, 0), new String[] { "West dragons", "at the" }),
27 VOID_KNIGHT_ISLAND(new Position(2666, 2648, 0), new String[] { "Void Knight's island", "at the" }),
28 BARROWS_HILL(new Position(3566, 3297, 0), new String[] { "Barrows hills", "on top of the" }),
29 DUEL_ARENA(new Position(3368, 3269, 0), new String[] { "Duel Arena", "at the" })
30 ;
31
32 public Position starPosition;
33 public String[] location;
34
35 ShootingStarLocations(Position starPosition, String[] location) {
36 this.starPosition = starPosition;
37 this.location = location;
38 }
39}