What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Screenshot on Death Plugin ? Need totally :D pls help!

Bossbot

New Member
Joined
May 9, 2012
Messages
257
Hi guys wanted to know if theres a simple plugin, screenshooting when your character dies? should be pretty simple and possible right?
 
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... :P
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
 
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

still nothing ;'(?

i mean i cant code but probly u just have to say something like if hp 0 or 1 = button for screenshot or screenshot dunno. and that as a .cs plugin.

BUMP still searching
 
Last edited:
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 :P
 

Attachments

Last edited:
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.
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.

Also let me know if it even works, i've no access to wow :P

hmm i tried it , the addons folder of wow recognized it as KILL CAM, but i just tried by letting myself fall from a high height and i died , but no screenshot or at least i dont know where the screenshot is , not in the addon folder and not in the wow screenshot folder.

so doesnt seem like it works i guess.
 
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");
 

Attachments

Last edited:
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");

WOW frikking awsome , thank you mate :D , this is insanely good , now when i bot and i get killed i know by who or what^^ , this also helps if a profile is buggy somewhere and the "botchar" dies so u know what spot it was or something , really thank you!

this would be even more cool if it also could screenshot every pvp kill u make :D
 
doesnt seem to work anymore in mist of pandaria ;'( ? can someone fix this pls^^
 
Back
Top