Signup Now
Page 8 of 9 FirstFirst ... 6789 LastLast
Results 71 to 80 of 84
  1. #71
    Free User
    Join Date
    May 2015
    Posts
    17
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Banantwist View Post
    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
    Gimmeeeeeee the updated version pls cuz this script give me black shot omg iam madddddddddd

  2. #72
    Free User infernoise's Avatar
    Join Date
    Mar 2015
    Posts
    192
    Reputation
    10
    Rep Power
    21
    Quote Originally Posted by Leonardo View Post
    Screenshot On Advance and Death


    Description

    Takes a screenshot whenever you skill/level up or die.


    Configuration

    Change the Skills variable to specify which skills the bot should save. For each skill set true to save or false to ignore.


    Code

    init start

    local UseSmartScreenshot = true

    local Skills = {
    -- Downgrades
    Death = true,

    -- Upgrades
    Level = true,
    Magic = true,
    Fist = true,
    Axe = true,
    Club = true,
    Sword = true,
    Distance = true,
    Shielding = true,
    Fishing = true,
    }

    -- DO NOT EDIT BELOW --

    local screenShotFunc = function(a)
    if UseSmartScreenshot and smartscreenshot ~= nil then
    return smartscreenshot(a)
    end

    return screenshot(a)
    end

    init end

    auto(400, 800)

    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
    screenShotFunc(string.format('Advance_%s_%s', $name, os.date('%Y-%m-%d %H-%M-%S')))
    end
    end
    end

    if Skills.Death and $dead then
    screenShotFunc(string.format('Death_%s_%s', $name, os.date('%Y-%m-%d %H-%M-%S')))
    repeat
    wait(1000)
    until not $dead
    end

    Download
    Does still it work?

  3. #73
    Free User
    Join Date
    Sep 2015
    Posts
    3
    Reputation
    10
    Rep Power
    0

    Angry help meee!!!!

    @Leonardo

    can you tell me why my screenshots are only all black or all white, since I update to windows 10??

  4. #74
    Free User tiranossaur's Avatar
    Join Date
    Jan 2014
    Posts
    198
    Reputation
    11
    Rep Power
    24
    @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.

    Loja Tiranossaur a mais de 3 anos no ramo de Gold's acesse minha Loja no Facebook: https://www.facebook.com/loja.tiranossaur

  5. #75
    Free User
    Join Date
    May 2016
    Posts
    68
    Reputation
    9
    Rep Power
    0
    Quote Originally Posted by tiranossaur View Post
    @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.
    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 use
    auto(100)
    just 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)
    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.

  6. #76
    Free User
    Join Date
    Aug 2015
    Posts
    29
    Reputation
    10
    Rep Power
    0
    Works on windows 10 ?

  7. #77
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,467
    Reputation
    205
    Rep Power
    27
    Quote Originally Posted by albm View Post
    Works on windows 10 ?
    works good for me
    Helped you? REP+

  8. #78
    Free User Nightshade's Avatar
    Join Date
    Dec 2013
    Location
    Brasil
    Posts
    513
    Reputation
    31
    Rep Power
    25
    the SS on death part of this persistent is not working =/
    Tibia player since 2003

    +Rep Everyone That Helped You.

    New on WindBot?, Try this amazing tutorial

  9. #79
    Free User
    Join Date
    Nov 2015
    Posts
    90
    Reputation
    10
    Rep Power
    20
    Quote Originally Posted by Borges View Post
    works good for me
    It gives me black screenshot any idea why ?

  10. #80
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,467
    Reputation
    205
    Rep Power
    27
    Quote Originally Posted by lantian View Post
    It gives me black screenshot any idea why ?
    screen focused?
    Helped you? REP+

 

 

Posting Permissions

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