Signup Now
Results 1 to 3 of 3
  1. #1
    Banned
    Join Date
    Nov 2014
    Posts
    377
    Reputation
    25
    Rep Power
    0

    Taking screenshot problem

    My bot is taking screenshot before 1-2 sec advance and also hes stoping when taking ss. How to fix it?

  2. #2
    Free User ozzix's Avatar
    Join Date
    Jan 2014
    Location
    Sweden
    Posts
    4,769
    Reputation
    151
    Rep Power
    31
    get a better persistant? hard to tell anything when i dont know what you use

    Level Latest Scripts
    250+
    Oramond Sewers [MAGE |RP X1 | RP X2 |RP X3|EK X2 | EK X1]
    200+
    Banuta X2 [MAGE | RP]
    280+
    Roshamuul Mountain [RP]
    280+
    Ferumbras Lair [RP]
    250+
    Roshamuul North Silencers [RP]

  3. #3
    Banned
    Join Date
    Nov 2014
    Posts
    377
    Reputation
    25
    Rep Power
    0
    Quote Originally Posted by ozzix View Post
    get a better persistant? hard to tell anything when i dont know what you use
    Using this + SStaker HUD and my boit stoping while advance;/ i have to move my mouse manually then hes doing screenshot and looting/atacking again... ;/

    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

 

 

Posting Permissions

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