semanji Posted April 10, 2016 Posted April 10, 2016 I know maybe you can use widgets but how would go about detecting the purple dot on minimap?
Explv Posted April 10, 2016 Posted April 10, 2016 (edited) I know maybe you can use widgets but how would go about detecting the purple dot on minimap? private boolean playerIsInClanChat(String username){ username = username.replace('\u00A0', ' '); for(RS2Widget widget : S.getWidgets().getWidgets(589, 5)){ if(widget.getMessage().contains(username)) return true; } return false; } Edited April 10, 2016 by Explv 2
semanji Posted April 10, 2016 Author Posted April 10, 2016 private boolean playerIsInClanChat(String username){ username = username.replace('\u00A0', ' '); for(RS2Widget widget : S.getWidgets().getWidgets(589, 5)){ if(widget.getMessage().contains(username)) return true; } return false; } Is there any fast way to do it without opening up clan chat tab?
Explv Posted April 10, 2016 Posted April 10, 2016 Is there any fast way to do it without opening up clan chat tab? I don't think so