Signup Now
Results 1 to 7 of 7
  1. #1
    Free User
    Join Date
    Jan 2017
    Posts
    6
    Reputation
    10
    Rep Power
    0

    Unhappy Can't work my script's with pillow backback

    hello, i can't use a pillow backpack as a usable backpack on scripts. is that a bug or still need to be added compatibility? it only open backpacks, but is not capable to move items in there like when buying pots or looting.

  2. #2
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,391
    Reputation
    183
    Rep Power
    25
    Quote Originally Posted by italop View Post
    hello, i can't use a pillow backpack as a usable backpack on scripts. is that a bug or still need to be added compatibility? it only open backpacks, but is not capable to move items in there like when buying pots or looting.
    Contact the scripter, it's not a problem with the bot, they simply haven't added new backpacks to their silly lists yet.
    Interested in software development and/or programming for Tibia?
    Check out the new Tibia Programming Forums (TibiaPF) by clicking the image below.

    Looking for a bot for the MMORPG, Medivia?
    Check out MediviaBotter, a powerful, injected bot by clicking the link below.


  3. #3
    Free User
    Join Date
    Jan 2017
    Posts
    6
    Reputation
    10
    Rep Power
    0
    it's not about the script maker, i've added it manually on script settings etc and tried on different scripts, it works for open backpack, but don't loot.
    Last edited by italop; 04-03-2017 at 10:03 PM.

  4. #4
    Free User glowingstick's Avatar
    Join Date
    Jan 2014
    Posts
    333
    Reputation
    36
    Rep Power
    22
    Click Edit Useroptions and replace it there

  5. #5
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,391
    Reputation
    183
    Rep Power
    25
    Quote Originally Posted by italop View Post
    it's not about the script maker, i've added it manually on script settings etc and tried on different scripts, it works for open backpack, but don't loot.
    When you change the setting in the looting destination, does it stay as what you've changed it to afterwards? I suspect the answer is no, in which case a persistent script will be polling the user options to find out what backpack you have specified there, and setting the looting destination to the container listed. I'm 99% sure it's the script. Feel free to name the script (and scripter) in question and I'll happily take a look - I can talk directly with most of the paid scripters so it might make things easier, but there is absolutely no technical reason why it should not work short of the scripter not including pillow backpack in their user options.
    Last edited by Josh; 04-04-2017 at 01:56 AM.
    Interested in software development and/or programming for Tibia?
    Check out the new Tibia Programming Forums (TibiaPF) by clicking the image below.

    Looking for a bot for the MMORPG, Medivia?
    Check out MediviaBotter, a powerful, injected bot by clicking the link below.


  6. #6
    Free User
    Join Date
    Jan 2017
    Posts
    6
    Reputation
    10
    Rep Power
    0
    i changed everyting, user options, looting, setting, and double checked if there isn't another buggy update settings script. the action that is failling on my scripts is that:
    -- [[ Pot Buyer ]] --
    if not islocation(1) then
    gotolabel($wptid-2, $wptsection)
    else
    sellflasks()

    local Items = {
    {Name = "mana potion", Amount = tonumber(getuseroption("MpToBuy"))+randomPots},
    {Name = "ultimate health potion", Amount = tonumber(getuseroption("UhpToBuy"))+randomHp}
    }

    for k, v in ipairs(Items) do
    local ActualAmount = v.Amount - itemcount(v.Name)

    while ActualAmount > 0 and $cap > 10 do
    buyitems(v.Name, ActualAmount)
    wait(300)
    while windowcount(suppbp) > 0 and getcontainer(suppbp).emptycount > 0 and itemcount(v.Name, mainbp) > 0 do
    moveitems(v.Name, suppbp, mainbp, 100)
    wait(200)
    end
    while getuseroption("extrasuppbp") and windowcount(suppbp2) > 0 and getcontainer(suppbp2).emptycount > 0 and itemcount(v.Name, mainbp) > 0 do
    moveitems(v.Name, suppbp2, mainbp, 100)
    wait(200)
    end
    ActualAmount = ActualAmount - 100
    end
    end
    end
    it works with any 20 volume bp and bp of holding. But with pillow backpack the script simply don't drag to pillow backpack', neither to second supp backpack which means it recognise pillow backpack's but cant drag itens do it.
    Last edited by italop; 04-05-2017 at 12:36 AM.

  7. #7
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,391
    Reputation
    183
    Rep Power
    25
    Quote Originally Posted by italop View Post
    i changed everyting, user options, looting, setting, and double checked if there isn't another buggy update settings script. the action that is failling on my scripts is that:
    it works with any 20 volume bp and bp of holding. But with pillow backpack the script simply don't drag to pillow backpack', neither to second supp backpack which means it recognise pillow backpack's but cant drag itens do it.
    Half the information is missing from the persistent because it's using userdata and other settings - posting parts of scripts like this is kinda pointless for that reason. If you changed user settings, you shouldn't need to change anything else. If you changed everything else, you shouldn't need to change user settings. If there were a bug in the bot which made pillow backpacks not work, we would've heard about it a long time ago. I still suspect that you've overlooked something, and it's going to be difficult if not impossible to debug without you paying any attention to the questions I'm actually asking.
    Interested in software development and/or programming for Tibia?
    Check out the new Tibia Programming Forums (TibiaPF) by clicking the image below.

    Looking for a bot for the MMORPG, Medivia?
    Check out MediviaBotter, a powerful, injected bot by clicking the link below.


 

 

Posting Permissions

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