PDA

View Full Version : Mod Request: Auto Screen Capture


thejoester
16-06-2006, 10:17 PM
Not sure if this is possible, but is there a way to make a mod that would auto screenshot in certain events?

Mainly I would like a mod to auto screenshot when I level. Maybe detect when it says ''Congradulations, you have reached level" and do a screen capture.


Is this possible? been done?

Thanks!

DiabolicalDestiny
17-06-2006, 01:26 AM
dun think its possible in an addon might need 3rd partyw hich may be illegal

include
17-06-2006, 12:54 PM
sure its possible!

register the event "PLAYER_LEVEL_UP"
Here (http://www.wowwiki.com/Events_P_%28Party%2C_Petition%2C_Pet%2C_PlayerBank%2C_Player%29#PLAYER_LEVEL_UP) you find more details about this event!

as soon as its fired, do:
SendChatMessage("Yeah, i reached level "..arg1, "SAY");
Screenshot();


this is NOT illegal, its a normal command of the WoW-API.
go reading www.wowwiki.com

Nexela
17-06-2006, 07:35 PM
PhotoOp
http://ui.worldofwar.net/ui.php?id=2718

include
18-06-2006, 02:31 PM
^^ exactly!