Signup Now
Page 9 of 11 FirstFirst ... 7891011 LastLast
Results 81 to 90 of 103
  1. #81
    Wind Powered
    Join Date
    Feb 2015
    Posts
    5
    Reputation
    10
    Rep Power
    0
    Something wrong with windbot 2.7.4 i don't know my mouse sometimes dance and some bots standing in depositer and can't move items to backpacks... it happend when i have 50+ tibia idk scripts or something idk i botting on the same before update

  2. #82
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    Quote Originally Posted by Gretyf View Post
    Something wrong with windbot 2.7.4 i don't know my mouse sometimes dance and some bots standing in depositer and can't move items to backpacks... it happend when i have 50+ tibia idk scripts or something idk i botting on the same before update
    Put Browser on the TOP and should be fine, check also if you you have High DPI in properities of Tibia Shortcut

  3. #83
    Free User
    Join Date
    Apr 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    o meu não está abrindo.
    Alguma ajuda?

    reachgrounditem("depot")
    wait(1000,2000)
    openitem("depot")
    wait(700,900)
    openitem("depot chest", "locker")
    wait(700,900)

  4. #84
    Free User
    Join Date
    Oct 2015
    Posts
    3
    Reputation
    10
    Rep Power
    0
    Works great on the depot action

    For those who dont understand as i struggled a little i just added this

    reachgrounditem("depot")
    setfavoritedepot(5)

    and it worked!

    dont know about the skinning thing yet

  5. #85
    Free User blakw's Avatar
    Join Date
    Dec 2013
    Posts
    2,670
    Reputation
    73
    Rep Power
    26
    Great job Lucas!


    Visit:
    (◣_◢)

  6. #86
    Free User
    Join Date
    Feb 2014
    Posts
    1
    Reputation
    10
    Rep Power
    0
    I got a problem with garkstals demons script, it open main dpbp and put items etc, but then it open the boxs again to take soils, but it dont open that backpack! whats its wrong?

  7. #87
    Free User
    Join Date
    Sep 2015
    Posts
    2
    Reputation
    10
    Rep Power
    0
    If the character has not the item to skin he got stuck beside the corpse.
    It should be nice to still hunting normaly if has not the item in backpack
    Follow the code:

    auto(1000)
    if skinspots(7, true, true) > 0 and $target.id == 0 and $lootsaround == 0 then
    pausewalking(10000)
    skin(7, true, true)
    pausewalking(0)
    end



    Quote Originally Posted by Lucas Terra View Post
    Multiple Depots System:
    If your scripts used opendepot(...) or depotaction(...) you don't have to worry at all. All your scripts will continue to work after this update.
    By default it will use depot index 1. This means you will have to setup your backpacks inside that depot box.

    If you want to change the default depot you can simply do:
    setfavoritedepot(5) -- this will set opendepot(...) / depotaction(...) to use depot index 5


    Skinning System:
    skin(...), stake(...), skinkitchenknife(...) and their correspondent spot functions got updated to not wait for the bodies to change their IDs before using the tool on it.
    They were completely rewritten, so let me know if you run in to any problems while using it. They will also count towards the looted items list.


    Change Log:
    • Fixed keyevent(...) not working with CTRL.
    • Now you can operate on JSON files using Lua io library.


    Added Variable
    • $favoritedepot - returns your favorite depot index. This will be used by opendepot(...) function to determine which depot index you want to use. Its initial value is 1.


    Added Function
    • setfavoritedepot(number index) - sets a value to the $favoritedepot variable. This will be useful if you plan on making your old scripts work with a different depot index.

  8. #88
    Free User strahowski's Avatar
    Join Date
    Aug 2014
    Posts
    216
    Reputation
    27
    Rep Power
    20
    Is $favoritedepot supposed to reset everytime you restart Tibia client & bot? Because that's what's happened to me. Seems rather stupid that it doesn't save to userdata like scriptuser options do.

  9. #89
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    Quote Originally Posted by strahowski View Post
    Is $favoritedepot supposed to reset everytime you restart Tibia client & bot? Because that's what's happened to me. Seems rather stupid that it doesn't save to userdata like scriptuser options do.
    Well it is reseting just make action before depositer with setfavoritedepot() and then save script

  10. #90
    Free User
    Join Date
    Sep 2015
    Posts
    1
    Reputation
    10
    Rep Power
    0
    IT IS OK??


    --Reach Depot/Open Dp/Deposit
    setfavoritedepot(2)
    stackdp = getlootingdestination('stackdp')
    nonstackdp = getlootingdestination('nonstackdp')
    lootbp = getlootingdestination('lootbp')
    maindpbp = getlootingdestination('maindpbp')

    local CONFIG = {
    LOOT_BACKPACK = lootbp,
    MAIN_DP_BACKPACK = maindpbp,
    STACKABLE_BACKPACK = stackdp,
    NOT_STACKABLE_BACKPACK = nonstackdp,
    }

    clearlastonto()

    while (true) do
    foreach lootingitem ITEM_ENTRY do
    while (itemcount(ITEM_ENTRY.id, CONFIG.LOOT_BACKPACK) > 0) do
    if (itemproperty(ITEM_ENTRY.id, ITEM_STACKABLE)) then
    moveitemsonto(ITEM_ENTRY.id, CONFIG.STACKABLE_BACKPACK, 1, CONFIG.MAIN_DP_BACKPACK, CONFIG.LOOT_BACKPACK) wait(600, 1200)
    else
    moveitemsonto(ITEM_ENTRY.id, CONFIG.NOT_STACKABLE_BACKPACK, $lastonto, CONFIG.MAIN_DP_BACKPACK, CONFIG.LOOT_BACKPACK) wait(600, 200)
    end
    end
    end

    if (itemcount(CONFIG.LOOT_BACKPACK, CONFIG.LOOT_BACKPACK) > 0) then
    openitem(CONFIG.LOOT_BACKPACK, CONFIG.LOOT_BACKPACK, false) waitcontainer(CONFIG.LOOT_BACKPACK, false)
    else
    break
    end

    wait(100)
    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
  •