pvptools: fix attack/cast hidden options (#986)

* pvptools: fix attack/cast options

* menuentryswapper: fix tob/cox hide cast options

* menuentryswapper: fix hide cast options in raids

* menuentryswapper: add plugin dependency

* pvptools: add pvp world/wilderness check

* menuentryswapper: fix hiding cast when enabling config setting

* menuentryswapper: fix checkstyle
This commit is contained in:
se7enAte9
2019-07-15 03:30:24 -04:00
committed by Kyleeld
parent b53c3bb1f7
commit ef6ea5b18f
6 changed files with 424 additions and 103 deletions

View File

@@ -1679,15 +1679,25 @@ public interface Client extends GameShell
boolean isSpellSelected();
/**
* Set whether or not player attack options will be hidden for clanmembers/friends
* Set whether or not player attack options will be hidden for friends
*/
void setHideFriendAttackOptions(boolean yes);
/**
* Set whether or not player cast options will be hidden for clanmembers/friends
* Set whether or not player cast options will be hidden for friends
*/
void setHideFriendCastOptions(boolean yes);
/**
* Set whether or not player attack options will be hidden for clanmates
*/
void setHideClanmateAttackOptions(boolean yes);
/**
* Set whether or not player cast options will be hidden for clanmates
*/
void setHideClanmateCastOptions(boolean yes);
/**
* Set spells excluded from above hiding
*/