View Single Post
10-03-05, 02:00 AM   #1
EntropyZ
A Defias Bandit
Join Date: Oct 2005
Posts: 3
How to detect the player making a critical hit

Code:
if( event == "UNIT_COMBAT") then 
      	if (arg1=="target") and (arg3=="CRITICAL") then 
	    --do something
	end 
   end
This can only detect a crit hit.
What should i do if i want to detect the player making a crit hit?
  Reply With Quote