View Single Post
06-14-20, 02:39 PM   #1
sharp230
A Defias Bandit
Join Date: Jun 2020
Posts: 2
How to print when target is changed?

Hello,

I'm a new programmer, and just trying to complete what I thought would be a simple task. I want to print "You've targeted <UnitName>" each time I select a new target. I cannot get this to work. My code is below:

Code:
local UIConfig = CreateFrame("Frame")
UIConfig:RegisterEvent("PLAYER_TARGET_CHANGED")

UIConfig:SetScript("OnEvent",
	function(self, event, ...)
		local arg1 = ...
                print("TEST")
end
I can't even get it to print "TEST" when I target something. If someone could give me a hint, I can figure out the rest, I've just been pulling my hair out for the past two days over this.

Edit: This is for WoW Classic
  Reply With Quote