-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #602 from g-mason0/development
Rs2Magic Fix & Various Plugin Updates
- Loading branch information
Showing
20 changed files
with
658 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ public enum MagicActivity { | |
SPLASHING, | ||
ALCHING, | ||
SUPERHEAT, | ||
TELEPORT, | ||
TELEALCH, | ||
} |
19 changes: 19 additions & 0 deletions
19
...rc/main/java/net/runelite/client/plugins/microbot/magic/aiomagic/enums/TeleportSpell.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package net.runelite.client.plugins.microbot.magic.aiomagic.enums; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import net.runelite.client.plugins.microbot.util.magic.Rs2Spells; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum TeleportSpell { | ||
VARROCK_TELEPORT(Rs2Spells.VARROCK_TELEPORT), | ||
LUMBRIDGE_TELEPORT(Rs2Spells.LUMBRIDGE_TELEPORT), | ||
FALADOR_TELEPORT(Rs2Spells.FALADOR_TELEPORT), | ||
CAMELOT_TELEPORT(Rs2Spells.CAMELOT_TELEPORT), | ||
ARDOUGNE_TELEPORT(Rs2Spells.ARDOUGNE_TELEPORT), | ||
WATCHTOWER_TELEPORT(Rs2Spells.WATCHTOWER_TELEPORT), | ||
TROLLHEIM_TELEPORT(Rs2Spells.TROLLHEIM_TELEPORT),; | ||
|
||
private final Rs2Spells rs2Spell; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.