Signup Now
Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16
  1. #11
    Free User
    Join Date
    Dec 2013
    Posts
    39
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Raphael View Post
    Walk over anything? There's no way for the bot to know what is walkable and what isn't before trying. It means it'd try to walk over walls, for instance.
    You are wrong.

    The Tibia client and by that, the tibia.dat contains this information

    More information here; http://otland.net/threads/tibia-dat-...de-link.25117/

  2. #12
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by jkaberg View Post
    You are wrong.

    The Tibia client and by that, the tibia.dat contains this information

    More information here; http://otland.net/threads/tibia-dat-...de-link.25117/
    I might be, but I see no walkable property.

  3. #13
    Moderator RoxZin xD's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    4,914
    Reputation
    109
    Rep Power
    31
    Quote Originally Posted by Raphael View Post
    I might be, but I see no walkable property.
    There is a way to read walkable tiles through memory. I'm sure of that, if I'm not mistaken on XenoBot there is Map.IsWalkable() as a function (what they use for their area rune scripts).



    Troubled Animals Quest [100+]
    ALL
    Feyrist Animals Surface [160+]
    RP
    Feyrist Silencers Underground X1 [180+]
    RP | EK
    Feyrist Silencers Underground X2 [200+]
    RP | EK
    Feyrist Silencers Surface [210+]
    RP | EK
    Rathleton Sewers [240+]
    RP
    Glooth Fairy [350+]
    ED/MS
    Hardcore Draken Walls [400+]
    EK

  4. #14
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,202
    Reputation
    141
    Rep Power
    10
    The reason why I ask you to set it manually is because I didn't want people complaining about bot walking over something it wasn't supposed to walk.

    local itemsTable = {}

    for id = 0, 30000 do
    local info = iteminfo(id)
    if info.isavoid and not (info.isunpass or info.isautomap or info.islight or info.isfullbank or info.isbank) then
    table.insert(itemsTable, id)
    end
    end
    print(itemsTable)

    This code is just an example on how to get item properties. It will also print all the 'walkable' items. But be careful, there could be some you don't want it to walk through.

    I will add all the properties of items to the documentation soon. Just didn't have time to update it yet.

  5. #15
    Free User
    Join Date
    Oct 2014
    Posts
    1
    Reputation
    10
    Rep Power
    0
    lucas sou br, eu nao consigo andar em cima de caixas e parcel como eu faço, me explique detalhadamente porq sou novo com o bot

  6. #16
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by painknow View Post
    lucas sou br, eu nao consigo andar em cima de caixas e parcel como eu faço, me explique detalhadamente porq sou novo com o bot
    This has already been explained in details, please take your time to search around.

 

 

Posting Permissions

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