View Full Version : Screenshotting made easy!
knatteborg
04-19-2013, 08:51 PM
Hello, I wanted to share a fantastic tool that helps you to take screenshots. It's called ImgSnapper and it's powered but ImgLand, so it's not my own software.
Simply go to:
http://snapper.imgland.net/
and download the client. There's no installation needed, you just open the client and then you're ready to go.
The default binding is ALT + F1 but this can be changed of course in the settings.
To take a screenshot, simply hold down your hotkey and target the area you want to capture, when you release the mouse button the picture will be automatically uploaded by ImgLand.
I made a example myself:
http://3.ii.gl/d49ytr.png
http://1.ii.gl/B6aWAx.png
http://1.ii.gl/Fqm9vc.png
Very useful if you want to send pictures to friends etc. There's of course an optional hotkey that captures the whole screen aswell.
Enjoy :cool:
knatteborg
04-19-2013, 09:26 PM
if you have any questions, feel free to pop em i the thread.
Elvang
04-19-2013, 11:13 PM
---------------------------------------------------------------
------------------------ SETTINGS ---------------------------
---------------------------------------------------------------
LevelUp = true -- Will take screenshot when leveling up
Death = true -- Will take screenshot upon death
Stamina = true -- Will take screenshot if below 16:00 stamina
---------------------------------------------------------------
------------- DO NOT CHANGE ANYTHING BELOW ------------------
---------------------------------------------------------------
level = Self.Level()
while true do
if (LevelUp) then
if Self.Level() > level then
screenshot(Self.Name() .. "_level_" .. Self.Level())
wait(1000)
level = Self.Level()
end
end
if (Death) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_death_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Stamina) then
if Self.Stamina() < 960 then
screenshot(Self.Name() .. "_LowStamina_" .. os.date("%H.%M"))
wait(1000)
Stamina = false
end
end
wait(5000)
end
knatteborg
04-19-2013, 11:36 PM
yes, I know there's code for capturing screenshots, however, ImgSnapper is kind of unique since it will immediately upload your pictures to the net, which makes it a lot easier to share them to friends, or use them in your project. You don't have to use it if you don't like it, and feel free to scan it if you suspect that it's a virus :D
knatteborg
04-19-2013, 11:38 PM
and just to be clear, this is not my software, I'm just sharing it because I find it really usable
Nostrax
04-21-2013, 02:23 PM
---------------------------------------------------------------
------------------------ SETTINGS ---------------------------
---------------------------------------------------------------
LevelUp = true -- Will take screenshot when leveling up
Death = true -- Will take screenshot upon death
Stamina = true -- Will take screenshot if below 16:00 stamina
---------------------------------------------------------------
------------- DO NOT CHANGE ANYTHING BELOW ------------------
---------------------------------------------------------------
level = Self.Level()
while true do
if (LevelUp) then
if Self.Level() > level then
screenshot(Self.Name() .. "_level_" .. Self.Level())
wait(1000)
level = Self.Level()
end
end
if (Death) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_death_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Stamina) then
if Self.Stamina() < 960 then
screenshot(Self.Name() .. "_LowStamina_" .. os.date("%H.%M"))
wait(1000)
Stamina = false
end
end
wait(5000)
end
Where does that lua save the screenshots? :)
DarkstaR
04-21-2013, 02:30 PM
To the screenshots directory.
Infernal Bolt
04-21-2013, 02:44 PM
yes, I know there's code for capturing screenshots, however, ImgSnapper is kind of unique since it will immediately upload your pictures to the net, which makes it a lot easier to share them to friends, or use them in your project. You don't have to use it if you don't like it, and feel free to scan it if you suspect that it's a virus :D
I've used imageshack's quickshot program for ages now and it has that functionality.
Seems like they have discontinued it though and started working on skypath instead.
Geovl96
04-21-2013, 08:07 PM
Im not sure why but im gettting the following error
22:06 XenoScript Error:
Script: screenshots by Avani.lua
Line #: 13
Chunk: C:\Users\UserName\Documents\XenoBot\Scripts\screen shots by Avani.lua
Error: unexpected symbol near '*'
This is an error with user-input and should not be reported as a bug with XenoBot.
Lifer
04-26-2013, 01:51 PM
---------------------------------------------------------------
------------------------ SETTINGS ---------------------------
---------------------------------------------------------------
LevelUp = true -- Will take screenshot when leveling up
Death = true -- Will take screenshot upon death
Stamina = true -- Will take screenshot if below 16:00 stamina
---------------------------------------------------------------
------------- DO NOT CHANGE ANYTHING BELOW ------------------
---------------------------------------------------------------
level = Self.Level()
while true do
if (LevelUp) then
if Self.Level() > level then
screenshot(Self.Name() .. "_level_" .. Self.Level())
wait(1000)
level = Self.Level()
end
end
if (Death) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_death_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Stamina) then
if Self.Stamina() < 960 then
screenshot(Self.Name() .. "_LowStamina_" .. os.date("%H.%M"))
wait(1000)
Stamina = false
end
end
wait(5000)
end
09:50 XenoScript Error:
Script: screenshot.lua
Line #: 12
Chunk: C:?Users?XXXX?Documents?XenoBot?Scripts?screenshot .lua
Error: unexpected symbol near '<'
This is an error with user-input and should not be reported as a bug with XenoBot.
EDIT : USING AVANI'S!
Information about Imgland.
It was created by a guy at Otland.net (Previous Global Moderator)
It is also discontinued(?) as far as I'm aware.
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.