Add various new scripts

This commit is contained in:
2022-01-19 12:35:11 +01:00
parent fb86f97efa
commit 78786709eb
84 changed files with 2674 additions and 76 deletions

View File

@ -1,17 +0,0 @@
package io.reisub.openosrs.wintertodt;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public enum Activity {
IDLE("Idle"),
WOODCUTTING("Woodcutting"),
FLETCHING("Fletching"),
FEEDING_BRAZIER("Feeding"),
FIXING_BRAZIER("Fixing"),
LIGHTING_BRAZIER("Lighting");
private final String actionString;
}