Signup Now
Results 1 to 6 of 6
  1. #1
    Free User
    Join Date
    Aug 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0

    Question Skin Stuck Character

    Hello,

    I dont know why, sometimes the character seems that uses skin before reaching the dead body and bcuz that, the bot hangs and does nothing, just stay stucked. Then I walk the character next to the dead body and he uses the skin and the bot back to work.

    Can someone help me with that?

  2. #2
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,394
    Reputation
    183
    Rep Power
    24
    Quote Originally Posted by joaodograo View Post
    Hello,

    I dont know why, sometimes the character seems that uses skin before reaching the dead body and bcuz that, the bot hangs and does nothing, just stay stucked. Then I walk the character next to the dead body and he uses the skin and the bot back to work.

    Can someone help me with that?
    What script are you using for skinning?
    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
    Aug 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Josh,

    I've used two different scripts and even then sometimes the event occurs. But here are the actions

    auto(1000) if maround() == 0 and $lootbodies == 0 then
    skin(7,true)
    end

    Also I used that above:

    auto(100)
    local item1 = itemid('hardened bone')
    local item2 = itemid('vampire dust')
    local WaitForSkinStake = getuseroption('WaitSkinStake') --Should it wait for body to be skinable/stakable?

    if $wptsection == "Hunt" then
    if maround(7) == 0 and $lootsaround == 0 and getuseroption('UseKnife') and itemcount("Obsidian knife") > 0 then
    local count1 = itemcount(item1)
    pausewalking(2000)
    skin(6,true,WaitForSkinStake)
    local delta1 = itemcount(item1) - count1

    if (delta1 > 0) then
    increaseamountlooted("hardened bone", delta1)
    end
    pausewalking(0)
    end

    if maround(7) == 0 and $lootsaround == 0 and getuseroption('UseStake') and itemcount("blessed wooden stake") > 0 then
    local count2 = itemcount(item2)
    pausewalking(2000)
    stake(6,true,WaitForSkinStake)
    local delta2 = itemcount(item2) - count2

    if (delta2 > 0) then
    increaseamountlooted("vampire dust", delta2)
    end
    pausewalking(0)
    end
    end

  4. #4
    Free User
    Join Date
    Aug 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Hello,

    Can someone help me?

  5. #5
    Free User
    Join Date
    Aug 2016
    Posts
    1
    Reputation
    10
    Rep Power
    0
    +1

    I have exactly the same problem as described by OP.
    This is the code on my script:

    local skinBehe = getuseroption('Skin')
    local waitSkin = getuseroption('WaitSkin')
    local itemAdd = itemid('Perfect Behemoth Fang')

    auto(200, 400)
    if $wptsection == "Hunt" then
    if maround(7) == 0 and $lootsaround == 0 and getuseroption('Skin') and itemcount('Obsidian Knife') > 0 then
    local count1 = itemcount(itemAdd)


    pausewalking(4000)
    skin(7, true, waitSkin)

    local delta1 = itemcount(itemAdd) - count1

    if (delta1 > 0) then
    increaseamountlooted('Perfect Behemoth Fang', delta1)
    end

    pausewalking(0)

    end
    end

    Thanks!

  6. #6
    Free User MenelZThais's Avatar
    Join Date
    Aug 2016
    Location
    Poland
    Posts
    253
    Reputation
    10
    Rep Power
    16
    Function skin is bugged. You can't do anything with it.

 

 

Posting Permissions

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