Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom food in TibiaScape
#1
24054
25621
25623
7158
25373
25371
25629
25631
25639
25381
25622
24059
24499
24498
901
25636
13992
25374
24500
25624
25637
24053
3581
3580
24060
24057
24055
7159
24056
25376
25633
24061
25372
25379
25386
25641
25384
25378
25635
25626
24058
25370
25630
25388
25377
25380
24056

These are the ID's of all the types of fish we get while fishing. Hopefully the list is complete, apologies if there are duplicates.
Reply

#2
24054, 25621, 25623, 7158, 25373, 25371, 25629, 25631, 25639, 25381, 25622, 24059, 24499, 24498, 901, 25636, 13992, 25374, 24500, 25624, 25637, 24053, 3581, 3580, 24060, 24057, 24055, 7159, 24056, 25376, 25633, 24061, 25372, 25379, 25386, 25641, 25384, 25378, 25635, 25626, 24058, 25370, 25630, 25388, 25377, 25380, 24056
Reply

#3
How do I add those?
Reply

#4
|Only Registered members can see download links. | Click here to buy subscription or here to register.

You can add them to a custom script, but I posted the list here so Arkilys can add them into the bot for auto eat.

Use the below script to eat fish you catch.

local EAT_TRIES = { Min = 1, Max = 1 }
local FOODS_IDS = { 24054, 25383, 25621, 25623, 7158, 25373, 25371, 25629, 25631, 25639, 25381, 25622, 24059, 24499, 24498, 901, 25636, 13992, 25374, 24500, 25624, 25637, 24053, 3581, 3580, 24060, 24057, 24055, 7159, 24056, 25376, 25633, 24061, 25372, 25379, 25386, 25641, 25384, 25378, 25635, 25626, 24058, 25370, 25630, 25388, 25377, 25380, 24056 } -- Foods ids you wanna eat.
local EAT_TIME = { Min = 10, Max = 20, } -- In SECONDS. Time to wait after eating food to eat again.
local STOP_FULL = false -- Stops eating when you are full message shows up.

NEXT_EAT_TIME = NEXT_EAT_TIME or 1

if connected() and runningtime() >= NEXT_EAT_TIME then
    local eatCount = 0
    local maxEatCount = random(EAT_TRIES.Min, EAT_TRIES.Max)
    for _, food in ipairs(FOODS_IDS) do
        if itemcount(food) > 0 then
            for i = eatCount, maxEatCount do
                useitem(food, '')
                wait(400, 800)
                eatCount = eatCount + 1
                if STOP_FULL and statusmessage() == 'You are full.' then
                    break
                end
            end
        end
        if eatCount >= maxEatCount then
            break
        end
    end
    NEXT_EAT_TIME = runningtime() + random(EAT_TIME.Min, EAT_TIME.Max)
end
Reply

#5
@Arkilys

Could you please add these ID's into the bot?
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016