View Single Post
  #1  
Old 12-10-2014, 07:00 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default

Well that function does work for me, all it does is return the amount of mobs on the client's hate list.

Code:
int Client::GetAggroCount() {
	return AggroCount;
}
Try something like this.
Code:
sub EVENT_SAY {
	if ($text=~/Hail/i) {
		plugin::Whisper("There are " . $client->GetAggroCount() . " NPCs on your hatelist.");
	}
}
Reply With Quote