Quote Originally Posted by Tripper69 View Post
can someone link me a screen capture that will work with me using multiple clients and afk
pls and ty
Not sure if this is exactly what you are after, but it works for me.

PHP Code:
--[[
    
This is a XenoBot example scriptintended to
    teach 
new users about the scripting API and 
    
act as script that is usable in actual play.
     
    
levelupScreenshot.lua takes a screenshot upon level up
 
    
** DO NOT EDIT THIS FILEINSTEADCOPY IT TO
    
"Documents\XenoBot\Scripts" AND EDIT THE COPY. **
]]--
 
 
--
this continuously loopsexecuting the code inside over and over again
while (true) do
    
local name Self.Name() --stores our name at the start
    local level 
Self.Level() --stores our level at the start
     
    
--this loops until our name changes (meaning we switched characters)
    while (
name == Self.Name()) do
        --
this checks if our level has increased, and screenshots if so
        
if (Self.Level() > levelthen
            level 
Self.Level() --updates the stored level
            screenshot
(name .. " level " .. level) --filename is "{name} level {level}
        end
         
        --this causes the loop to wait between 1 and 2 seconds before retrying
        wait(1500, 2500)
    end
end 
It saves the screenshots to your Xenobot Screenshots folder.

Are you playing PvP or Non-PvP servers?
Good luck with your project!


EDIT: Not sure who to credit for the script.
~ Shadow Wolf