add ability to hide npc by index value - andrewterra

This commit is contained in:
zeruth
2021-01-21 22:55:52 -05:00
parent 90a4c85e46
commit ceb8359ca1
3 changed files with 42 additions and 0 deletions

View File

@@ -1616,6 +1616,20 @@ public interface Client extends GameShell
*/
void forciblyUnhideNpcName(String name);
/**
* Get the list of NPC indices that are currently hidden
*
* @return all of the current hidden NPC Indices
*/
List<Integer> getHiddenNpcIndices();
/**
* If an NPC index is in this List then do not render it
*
* @param npcIndices the npc indices to hide
*/
void setHiddenNpcIndices(List<Integer> npcIndices);
/**
* Increments the counter for how many times this npc has been selected to be hidden on death
*