Class HunterJournal
Used for recording entries into the hunter's journal
Namespace: WeaverCore
Assembly: WeaverCore.dll
Syntax
public static class HunterJournal
Methods
| Edit this page View SourceDisplayJournalUpdate(bool)
Displays an icon at the bottom-right of the screen indicating the hunter's journal was updated
Declaration
public static void DisplayJournalUpdate(bool displayText = false)
Parameters
Type | Name | Description |
---|---|---|
bool | displayText | Should the text "Journal Updated" also be displayed? |
HasEntryFor(string)
Does the enemy entry exist in the hunter's journal?
Declaration
public static bool HasEntryFor(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the enemy in the hunter's journal |
Returns
Type | Description |
---|---|
bool | Returns whether the enemy entry exists in the hunter's journal |
HasEntryFor(HunterJournalEntry)
Does the enemy entry exist in the hunter's journal?
Declaration
public static bool HasEntryFor(HunterJournalEntry entry)
Parameters
Type | Name | Description |
---|---|---|
HunterJournalEntry | entry |
Returns
Type | Description |
---|---|
bool | Returns whether the enemy entry exists in the hunter's journal |
HasKilled(string)
Has the player killed this enemy at least once?
Declaration
public static bool HasKilled(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the enemy in the hunter's journal |
Returns
Type | Description |
---|---|
bool | Returns whether this player has killed the enemy before |
HasKilled(HunterJournalEntry)
Has the player killed this enemy at least once?
Declaration
public static bool HasKilled(HunterJournalEntry entry)
Parameters
Type | Name | Description |
---|---|---|
HunterJournalEntry | entry | The entry of the enemy in the hunter's journal |
Returns
Type | Description |
---|---|
bool | Returns whether this player has killed the enemy before |
KillsLeft(string)
How many kills are left to fully unlock the enemy?
Declaration
public static int KillsLeft(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the enemy in the hunter's journal |
Returns
Type | Description |
---|---|
int | Returns how many kills are left to fully unlock the enemy |
KillsLeft(HunterJournalEntry)
How many kills are left to fully unlock the enemy?
Declaration
public static int KillsLeft(HunterJournalEntry entry)
Parameters
Type | Name | Description |
---|---|---|
HunterJournalEntry | entry |
Returns
Type | Description |
---|---|
int | Returns how many kills are left to fully unlock the enemy |
RecordKillFor(string)
Records a kill for the enemy
Declaration
public static void RecordKillFor(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the enemy in the hunter's journal |
RecordKillFor(HunterJournalEntry)
Records a kill for the enemy
Declaration
public static void RecordKillFor(HunterJournalEntry entry)
Parameters
Type | Name | Description |
---|---|---|
HunterJournalEntry | entry |