disable smart screenshot if You don't use sstaker hud
Printable View
@Leonardo
I seen somewhere on the forums, but I cannot find it again, but it was an action you can put in the cavebot that will screeshot everytime it hits a certain WP.
I want it to take a screenshot EVERY time it goes to the depot for HUD screenshots, Do you know where I seen this, or can you code it for me real quick?
@Leonardo
Is there a way to take screenshots using Dx5?? :( all my screenies are pitch black and still dont know why I cant set dx9
is it possible to make screenshot when anyone on myself or anyone on screen is low hp? or for ex. i deal high damage (like if msg you deal 400+ dmg on server log)?
i pvp a lot but always forgot to take screens : /
I'm assuming you mean;
-- hud locations, relative to world window. negative coordinates will be right / bottom aligned local relocateLocations = {
{ name = "GeneralInfo", x = 4, y = -20 },
{ name = "MonitorMyStats", x = 0, y = 0 },
{ name = "MonitorMyHunting", x = - 242, y = 0 }
Those names need to line up with the names of the HUDs
also; about that screenshot on waypoint, could you help me?
This only work with "Working Print screen" With my school pc that i can use prt screen wont work :( but another script that i use work great:D
For those who are having troubles with your huds being taken you need to make sure its correctly set up, like the image below.
http://i.imgur.com/fRJ2XDs.jpg
@Leonardo
When you say windows installation what do you mean...?
because I ran a sfc /scannow and the result was perfect :/
@Leonardo where the script save the screenshoots ?
I search in Windbots/Screenshoots and have no one :/.
Hello! I've been trying to figure out why it doesn't take any screenshots on level up, death, skilling etc... And then I saw the post from @Orexx
Do I have to put the screenshot hotkey in the HUD section?!
I've always had it in persistent and cavebot scripter and that didn't work at all :(
BUMP, I still have issues with level up/skill/death screenshots.
Is there anyone who can tell me why it doesn't work when it's in the cavebot scripter, normal hotkey/persistent script section nor the hud section??
Almost pulled my hair out trying to figure out how to make the screenshot hotkey work.
However this morning I was browsing the life-thread of @Bonzaii when I found his screenshot hotkey:
init start
local Skills = {
-- downgrade
Death = true,
-- upgrade
Level = true,
Magic = true,
Fist = false,
Axe = false,
Club = false,
Sword = true,
Distance = true,
Shielding = true,
Fishing = false
}
-- DO NOT EDIT BELOW THIS LINE --
init end
auto(1000, 1200)
foreach newmessage m do
if m.type == MSG_ADVANCE then
local Skill = m.content:match('You advanced .- (.-)[%s%.].-')
if Skill and Skills[Skill:capitalize()] then
if $minimized then
restoreclient()
wait(800)
focusclient()
smartscreenshot(string.format("Advance: %s %s", $name, ''))
wait(800)
minimizeclient()
else
focusclient()
smartscreenshot(string.format("Advance: %s %s", $name,''))
end
elseif Skills.Death then
local Death = m.content:match("You were downgraded (.+)")
if Death then
if $minimized then
restoreclient()
wait(800)
focusclient()
smartscreenshot(string.format("Death: %s %s", $name, ''))
wait(800)
minimizeclient()
else
focusclient()
smartscreenshot(string.format("Death: %s %s", $name, ''))
end
end
end
end
end
Anyone can tell me why this hotkey worked but the one made by Leonardo didn't? :)
Kind regards,
My brother uses your currently version and it works perferctly for him. I've tried yours for like 50 or more advances and it haven't been taking any screenshots until I tried this "old" version.
Guess my PC is acting funny!
All that matters for me is that it's working :)
Does anyone know how much should I set the compression quality (on SSTAKER.lua in windbot) for it to saves the screenshots as JPG instead? My hard drive ain't that big for me to waste it with screenshots xD
@Lucas Terra, @Raphael, @Leonardo? Anyone?
Because the smart screenshotter uses a different method for saving your screenshot. @Lucas Terra hasn't implemented PNG or JPEG conversion based on the argument that it is too performance costly (both involve compression) and, even though I call bullshit on that argument (we're talking tenths of miliseconds here, maybe less) he's the boss.
guys all of my screenshot i found it black someone help me pls i don't even minimize cilent :O!!!!!!
@Leonardo
can you tell me why my screenshots are only all black or all white, since I update to windows 10??
@Leonardo It's not working here I'm using Win7.
The bot takes the screenshots but 1 minute before dead, and not at the moment of die.
http://i.imgur.com/xxy0DcT.jpg
Hey I had the same problem and I solved it, maybe it will help you too. Sometimes it would even take screenshot from hours before death. Problem was not only with death but with other screenshots as well. I investigated and it seems that if I lock my screen (windows+L) then there are problems. If I don't lock my screen then everything is ok.
Also I think locking screen makes some more problems with backpack opening sometimes but I'm not 100% sure about that.
So don't lock your screen, wait until you are killed and see if it works ok :)
One more thing. I had some more problems with death screenshot (like screenshot made in temple or others) but they were solved by making the script work more frequent. I usejust to be sure and no problems, I don't see a reason to randomize auto in this particular case since it's actually not making any actions on the client (at least my script)auto(100)
I tested all this with normal screenshot (not smartscreenshot) and my script is about 6 lines long so very simple, but the main rule is the same as in Leonardo's script so it will probably work similar. However I believe that thing with windows screen locking and auto(100)/auto(400,800) is probably dependent on windows version and other things like displays configuration etc. That's why only few people have problems with it. For instance Leonardo's script was sometimes working fine on my laptop (locked) without external display but was not working on my normal configuration which is laptop (closed lid so display is always off) and external display connected (it's on when setting up the scripts and off when boting afk) and windows locked.
Also I don't minimize windows, I bot several chars at once and usually I just leave some other window focused but screenshots are working fine on all running tibia clients.
Works on windows 10 ?
the SS on death part of this persistent is not working =/