Thread: Check for buff?
View Single Post
  #2  
Old 02-25-2014, 02:37 PM
Township EQ
Hill Giant
 
Join Date: Sep 2013
Posts: 118
Default

try this.. no clue if it works or not just got it from the wiki.. put this on a random npc and change the spell id.

Code:
sub EVENT_SAY {
	if($text=~/hail/i) {
		if($client->FindBuff(123456) {
			$client->Message(15, "You have dat buff on you dawwwwwg");
		}
	}
}
Reply With Quote