Signup Now
Results 1 to 2 of 2

Thread: screen shot

  1. #1
    Free User
    Join Date
    May 2015
    Posts
    2
    Reputation
    10
    Rep Power
    0

    screen shot

    looking for a script that will take a screen shot everytime i level.

  2. #2
    Free User xinxs's Avatar
    Join Date
    Sep 2014
    Posts
    50
    Reputation
    18
    Rep Power
    20
    PHP Code:
    init start

        local Skills 
    = {
            -- 
    Downgrade
            Death 
    true,

            -- 
    Upgrade
            Level 
    true,
            
    Magic false,
            
    Fist false,
            
    Axe false,
            
    Club false,
            
    Sword false,
            
    Distance false,
            
    Shielding false,
            
    Fishing false,
        }


    init end

    auto
    (400800)

    foreach 
    newmessage m do
        if 
    m.type == MSG_STATUS or m.type == MSG_ADVANCE then
            local Skill 
    m.content:match('You advanced .- (.-)[%s%.].-')

            if 
    Skill and Skills[Skill:capitalize()] then
                screenshot
    (string.format('Advance_%s_%s'$nameos.date('%Y-%m-%d %H-%M-%S')))
            elseif 
    Skills.Death and m.content:match("You were killed (.+)"then
                screenshot
    (string.format('Death_%s_%s'$nameos.date('%Y-%m-%d %H-%M-%S')))
            
    end
        end
    end 

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •