Is there a way to make a addon to delete my files in the screenshot folder?
I'm not aware of any addon that can do this, but it is possible to write a Windows Command Script that will clear the folder for you and then launch RoM.
You can write this using Notepad and the 2 lines will be something like:
del /a "c:\program files\runes of magic\screenshots\*.bmp"
c:\program files\runes of magic\Runes of Magic.exe
Whilst I could provide you with the 2 full lines you need, they would be specific to my own system and may not work for you at all.
I provide no guarantee that this will work, but perhaps you should replace the "/a" switch on the del command with "/p" until you are sure it works.
/a will automatically delete whereas the /p will make the system prompt you for confirmation.