Class CipherClue
- java.lang.Object
-
- net.runelite.client.plugins.cluescrolls.clues.ClueScroll
-
- net.runelite.client.plugins.cluescrolls.clues.CipherClue
-
- All Implemented Interfaces:
LocationClueScroll
,NpcClueScroll
public class CipherClue extends ClueScroll implements NpcClueScroll, LocationClueScroll
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CipherClue.CipherClueBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CipherClue.CipherClueBuilder
builder()
static CipherClue
forText(String text)
String
getAnswer()
Function<ClueScrollPlugin,String>
getAreaProvider()
int[]
getConfigKeys()
WorldPoint
getLocation(ClueScrollPlugin plugin)
Function<ClueScrollPlugin,WorldPoint>
getLocationProvider()
int
getNpc()
String[]
getNpcs(ClueScrollPlugin plugin)
String
getQuestion()
String
getText()
void
makeOverlayHint(PanelComponent panelComponent, ClueScrollPlugin plugin)
void
makeWorldOverlayHint(Graphics2D graphics, ClueScrollPlugin plugin)
-
Methods inherited from class net.runelite.client.plugins.cluescrolls.clues.ClueScroll
getEnemy, getFirePitVarbitId, isRequiresLight, isRequiresSpade, renderOverlayNote, setEnemy, setFirePitVarbitId, setRequiresLight, setRequiresSpade
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.runelite.client.plugins.cluescrolls.clues.LocationClueScroll
getLocations
-
Methods inherited from interface net.runelite.client.plugins.cluescrolls.clues.NpcClueScroll
getNpcRegions
-
-
-
-
Method Detail
-
getLocation
public WorldPoint getLocation(ClueScrollPlugin plugin)
- Specified by:
getLocation
in interfaceLocationClueScroll
-
makeOverlayHint
public void makeOverlayHint(PanelComponent panelComponent, ClueScrollPlugin plugin)
- Specified by:
makeOverlayHint
in classClueScroll
-
makeWorldOverlayHint
public void makeWorldOverlayHint(Graphics2D graphics, ClueScrollPlugin plugin)
- Specified by:
makeWorldOverlayHint
in classClueScroll
-
forText
public static CipherClue forText(String text)
-
getNpcs
public String[] getNpcs(ClueScrollPlugin plugin)
- Specified by:
getNpcs
in interfaceNpcClueScroll
-
getConfigKeys
public int[] getConfigKeys()
- Overrides:
getConfigKeys
in classClueScroll
-
builder
public static CipherClue.CipherClueBuilder builder()
-
getText
public String getText()
-
getNpc
public int getNpc()
-
getLocationProvider
public Function<ClueScrollPlugin,WorldPoint> getLocationProvider()
-
getAreaProvider
public Function<ClueScrollPlugin,String> getAreaProvider()
-
getQuestion
@Nullable public String getQuestion()
-
getAnswer
@Nullable public String getAnswer()
-
-