Signup Now
Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 55
  1. #11
    Free User
    Join Date
    Feb 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    @Furyy, you can use the HUD general Info to check the ID of the Big Wooden Chairs. When you got it please post it here so it can be added to the list!

  2. #12
    Free User
    Join Date
    May 2014
    Posts
    122
    Reputation
    24
    Rep Power
    20
    how to use this ? i go block by chest.... Just put this at cavebot/scripter/add new script ? or something like "auto 200 walkid"?

  3. #13
    Free User
    Join Date
    Mar 2014
    Posts
    38
    Reputation
    10
    Rep Power
    0
    Thanks, very useful!

  4. #14
    Free User
    Join Date
    Aug 2014
    Posts
    5
    Reputation
    10
    Rep Power
    0
    the wooden chairs is 8519-8522

  5. #15
    Free User
    Join Date
    Jun 2015
    Posts
    1
    Reputation
    10
    Rep Power
    0
    Could anyone tell me the Heavy Wooden Chair ID?

  6. #16
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    To take all walkeable IDs:

    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)


    will return this on console
    {140, 404, 620, 621, 623, 624, 831, 832, 833, 834, 2130, 2140, 2314, 2315, 2316, 2319, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2431, 2432, 2433, 2434, 2441, 2442, 2443, 2444, 2469, 2471, 2472, 2473, 2478, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2519, 2523, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2981, 2983, 2984, 2985, 2987, 2988, 3503, 3504, 3652, 3666, 4054, 5086, 5087, 5088, 5463, 5674, 5675, 5915, 5916, 6114, 6115, 6371, 6372, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7169, 7170, 7266, 7267, 7288, 7864, 8519, 8520, 8521, 8522, 8529, 8530, 8763, 9061, 9062, 10182, 10207, 10209, 10216, 10286, 10287, 10288, 10978, 10979, 11010, 11011, 11012, 11013, 11540, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 12020, 12021, 12022, 12477, 12573, 12636, 12637, 12638, 12639, 13969, 14237, 14741, 14756, 15151, 15152, 15153, 15154, 15155, 17152, 17359, 17360, 17361, 17362, 17363, 17364, 17365, 17366, 17367, 17972, 17974, 17975, 17977, 19116, 19200, 21152, 21300, 21391, 21842}
    Helped you? REP+

  7. #17
    Free User
    Join Date
    Aug 2015
    Posts
    88
    Reputation
    10
    Rep Power
    18
    Just found out that the bot doesn't walk over "venorean drawer kit" anyone know the ID of that ?

  8. #18
    Wind Powered
    Join Date
    Sep 2015
    Location
    LONDON
    Posts
    23
    Reputation
    10
    Rep Power
    0
    hi,
    Is it still up to date?

  9. #19
    Free User Stephano's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    433
    Reputation
    43
    Rep Power
    21
    Quote Originally Posted by Borges View Post
    To take all walkeable IDs:

    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)


    will return this on console
    {140, 404, 620, 621, 623, 624, 831, 832, 833, 834, 2130, 2140, 2314, 2315, 2316, 2319, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2431, 2432, 2433, 2434, 2441, 2442, 2443, 2444, 2469, 2471, 2472, 2473, 2478, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2519, 2523, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2981, 2983, 2984, 2985, 2987, 2988, 3503, 3504, 3652, 3666, 4054, 5086, 5087, 5088, 5463, 5674, 5675, 5915, 5916, 6114, 6115, 6371, 6372, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7169, 7170, 7266, 7267, 7288, 7864, 8519, 8520, 8521, 8522, 8529, 8530, 8763, 9061, 9062, 10182, 10207, 10209, 10216, 10286, 10287, 10288, 10978, 10979, 11010, 11011, 11012, 11013, 11540, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 12020, 12021, 12022, 12477, 12573, 12636, 12637, 12638, 12639, 13969, 14237, 14741, 14756, 15151, 15152, 15153, 15154, 15155, 17152, 17359, 17360, 17361, 17362, 17363, 17364, 17365, 17366, 17367, 17972, 17974, 17975, 17977, 19116, 19200, 21152, 21300, 21391, 21842}
    I used the code to take the IDs but it missed the yellow magic wall and added the impassable wild growth, do you know why?
    For those who need the updated list, here it is:

    105, 140, 404, 620, 621, 623, 624, 831, 832, 833, 834, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2140, 2314, 2315, 2316, 2319, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2431, 2432, 2433, 2434, 2441, 2442, 2443, 2444, 2469, 2471, 2472, 2473, 2478, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2519, 2523, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2981, 2983, 2984, 2985, 2987, 2988, 3503, 3504, 3652, 3666, 4054, 5086, 5087, 5088, 5463, 5674, 5675, 5915, 5916, 6114, 6115, 6371, 6372, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7169, 7170, 7266, 7267, 7288, 7864, 8519, 8520, 8521, 8522, 8529, 8530, 8763, 9061, 9062, 9630, 10181, 10182, 10207, 10209, 10216, 10286, 10287, 10288, 10978, 10979, 11010, 11011, 11012, 11013, 11540, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 12020, 12021, 12022, 12477, 12573, 12636, 12637, 12638, 12639, 12743, 13969, 14237, 14741, 14756, 15151, 15152, 15153, 15154, 15155, 17152, 17359, 17360, 17361, 17362, 17363, 17364, 17365, 17366, 17367, 17972, 17974, 17975, 17977, 19116, 19200, 21152, 21300, 21391, 21842, 23403, 23404, 23405, 23406, 23407, 23408, 23409, 23410, 23411, 23414, 23417, 23418, 23423, 23424, 23425, 23426, 23427, 23428, 23429, 23430, 23456, 23457, 23458, 23459, 23460, 23473
    Last edited by Stephano; 04-15-2016 at 06:18 PM.

  10. #20
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by Stephano View Post
    I used the code to take the IDs but it missed the yellow magic wall and added the impassable wild growth, do you know why?
    For those who need the updated list, here it is:

    140, 404, 620, 621, 623, 624, 831, 832, 833, 834, 2131, 2132, 2133, 2134, 2135, 2140, 2314, 2315, 2316, 2319, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2431, 2432, 2433, 2434, 2441, 2442, 2443, 2444, 2469, 2471, 2472, 2473, 2478, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2519, 2523, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2981, 2983, 2984, 2985, 2987, 2988, 3503, 3504, 3652, 3666, 4054, 5086, 5087, 5088, 5463, 5674, 5675, 5915, 5916, 6114, 6115, 6371, 6372, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7169, 7170, 7266, 7267, 7288, 7864, 8519, 8520, 8521, 8522, 8529, 8530, 8763, 9061, 9062, 10181, 10182, 10207, 10209, 10216, 10286, 10287, 10288, 10978, 10979, 11010, 11011, 11012, 11013, 11540, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 12020, 12021, 12022, 12477, 12573, 12636, 12637, 12638, 12639, 13969, 14237, 14741, 14756, 15151, 15152, 15153, 15154, 15155, 17152, 17359, 17360, 17361, 17362, 17363, 17364, 17365, 17366, 17367, 17972, 17974, 17975, 17977, 19116, 19200, 21152, 21300, 21391, 21842, 23403, 23404, 23405, 23406, 23407, 23408, 23409, 23410, 23411, 23414, 23417, 23418, 23423, 23424, 23425, 23426, 23427, 23428, 23429, 23430, 23456, 23457, 23458, 23459, 23460, 23473
    ID 10181 is returning true for .islight

    I don't know wild growth ID to check.
    Helped you? REP+

 

 

Posting Permissions

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