semanji Posted April 10, 2016 Share Posted April 10, 2016 I know maybe you can use widgets but how would go about detecting the purple dot on minimap? Quote Link to comment Share on other sites More sharing options...
Explv Posted April 10, 2016 Share 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 Quote Link to comment Share on other sites More sharing options...
semanji Posted April 10, 2016 Author Share 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? Quote Link to comment Share on other sites More sharing options...
Explv Posted April 10, 2016 Share Posted April 10, 2016 Is there any fast way to do it without opening up clan chat tab? I don't think so Quote Link to comment Share on other sites More sharing options...