Posts: 30
Threads: 17
Joined: Oct 2018
Reputation:
0
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.
Posts: 4
Threads: 0
Joined: Apr 2023
Reputation:
0
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
Posts: 2
Threads: 0
Joined: Feb 2020
Reputation:
0
Posts: 30
Threads: 17
Joined: Oct 2018
Reputation:
0
|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
Posts: 2
Threads: 1
Joined: Mar 2025
Reputation:
0
@ Arkilys
Could you please add these ID's into the bot?
|