I remember using an addon that would screenshot whenever leveling up or getting an achievement. Dont remember if it had the option for deaths tho...
If you're interested in seeing who killed you (pvp) Maybe this is something useful? Death Note - Combat - World of Warcraft Addons - Curse
nah should be something , on death = screenshot, i want to see what happened to my toon while i slept or something. and a pic speaks more than some data
local eventFrame = CreateFrame("Frame");
function eventFrame:PLAYER_DEAD(event)
print("What a beautiful death!");
Screenshot();
end
print("Deathcam loaded");
Like a baws.This 5 min work AddOn should do:
Code:local eventFrame = CreateFrame("Frame"); function eventFrame:PLAYER_DEAD(event) print("What a beautiful death!"); Screenshot(); end print("Deathcam loaded");
Unzip to WoW/Interface/AddOns and don't forget to enable.
This 5 min work AddOn should do:
Code:local eventFrame = CreateFrame("Frame"); function eventFrame:PLAYER_DEAD(event) print("What a beautiful death!"); Screenshot(); end print("Deathcam loaded");
Unzip to WoW/Interface/AddOns and don't forget to enable.
Also let me know if it even works, i've no access to wow![]()
local eventFrame = CreateFrame("Frame");
local function eventHandler(self, event, ...)
if self[event] then
self[event](self, event, ...);
end
end
function eventFrame:PLAYER_DEAD(event)
print("What a beautiful death!");
Screenshot();
end
eventFrame:SetScript("OnEvent", eventHandler);
eventFrame:RegisterEvent("PLAYER_DEAD");
print("Deathcam loaded");
After some quick analyze of my other addon using event, i forgot to register event in previous one.
Also fixed name ;d
I'm 99% sure this one will work.
Code:local eventFrame = CreateFrame("Frame"); local function eventHandler(self, event, ...) if self[event] then self[event](self, event, ...); end end function eventFrame:PLAYER_DEAD(event) print("What a beautiful death!"); Screenshot(); end eventFrame:SetScript("OnEvent", eventHandler); eventFrame:RegisterEvent("PLAYER_DEAD"); print("Deathcam loaded");
doesnt seem to work anymore in mist of pandaria ;'( ? can someone fix this pls^^