• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

v8 client monster loot delay

Reign

New Member
Joined
Jan 12, 2023
Messages
3
Reaction score
0
GitHub
Reign
Is there a way to make slower the option to oper corpses when looting monsters?
My characters always opens and closes the dead creature on the ground because it's executing the function very quickly. I would like to make it more slowly to avoid this mistake
 
in config lua timebetweenactions or something like that i guess?
 
Is there a way to make slower the option to oper corpses when looting monsters?
My characters always opens and closes the dead creature on the ground because it's executing the function very quickly. I would like to make it more slowly to avoid this mistake
On vbot.. Main/extras scripts & settings/loot delay.. increase
 
On vbot.. Main/extras scripts & settings/loot delay.. increase
didn't help at all bro

that's the loot script. I don't know where to edit

{
"looting": {
"items": [
{
"count": 0,
"id": 3040
},
{
"count": 0,
"id": 3043
},
{
"count": 0,
"id": 11510
},
{
"count": 0,
"id": 954
},
{
"count": 0,
"id": 9058
}
],
"maxDanger": 10,
"minCapacity": 100,
"containers": [
{
"count": 1,
"id": 9604
}
],
"everyItem": false
},
"targeting": [
{
"useSpellAttack": false,
"useRuneAttack": false,
"minMana": 200,
"avoidAttacks": false,
"attackSpellDelay": 2500,
"groupAttackSpell": "",
"danger": 1,
"runeAttackDelay": 2000,
"lureCavebot": false,
"dontLoot": false,
"useGroupAttackRune": false,
"groupRuneAttackRadius": 1,
"groupAttackIgnorePlayers": false,
"maxDistance": 10,
"groupAttackIgnoreParty": false,
"lureCount": 2,
"useGroupAttack": false,
"groupRuneAttackTargets": 2,
"attackSpell": "",
"chase": false,
"priority": 1,
"keepDistanceRange": 1,
"keepDistance": false,
"groupAttackTargets": 2,
"groupAttackRune": 0,
"groupAttackRadius": 1,
"groupRuneAttackDelay": 5000,
"lure": false,
"attackRune": 0,
"groupAttackDelay": 5000,
"minManaGroup": 1500,
"name": "*",
"regex": "^.*$"
}
]
}
 
didn't help at all bro

that's the loot script. I don't know where to edit

{
"looting": {
"items": [
{
"count": 0,
"id": 3040
},
{
"count": 0,
"id": 3043
},
{
"count": 0,
"id": 11510
},
{
"count": 0,
"id": 954
},
{
"count": 0,
"id": 9058
}
],
"maxDanger": 10,
"minCapacity": 100,
"containers": [
{
"count": 1,
"id": 9604
}
],
"everyItem": false
},
"targeting": [
{
"useSpellAttack": false,
"useRuneAttack": false,
"minMana": 200,
"avoidAttacks": false,
"attackSpellDelay": 2500,
"groupAttackSpell": "",
"danger": 1,
"runeAttackDelay": 2000,
"lureCavebot": false,
"dontLoot": false,
"useGroupAttackRune": false,
"groupRuneAttackRadius": 1,
"groupAttackIgnorePlayers": false,
"maxDistance": 10,
"groupAttackIgnoreParty": false,
"lureCount": 2,
"useGroupAttack": false,
"groupRuneAttackTargets": 2,
"attackSpell": "",
"chase": false,
"priority": 1,
"keepDistanceRange": 1,
"keepDistance": false,
"groupAttackTargets": 2,
"groupAttackRune": 0,
"groupAttackRadius": 1,
"groupRuneAttackDelay": 5000,
"lure": false,
"attackRune": 0,
"groupAttackDelay": 5000,
"minManaGroup": 1500,
"name": "*",
"regex": "^.*$"
}
]
}
This is your storage/profile config. This is not the looting script. Looting script is in “botFolder”/targetbot(or target idk)/looting.lua.. try find the action g_game.open inside this file and insert a delay(300) after that. But idk if it’s gonna work…

You’ve set loot delay to max? 1000?

On your bot, in cave tab you can also open cavebot config and set “server ping/delay” to a higher value.. there’s also “delay after use” that you can do the same..

If you need more help with vBot you can join: Join the OTClientV8 Discord Server! (https://discord.gg/otclientv8-628769144925585428)
 
Back
Top