• 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!

Loot gold coin CandyBot

Just change loot id to 3031.

Change where?
3031 is really gold coin ID? How to get the items ID on OTclient?

Is that something here?
AutoLoot.lootList
Code:
-- Variables

AutoLoot.lootList = {}
AutoLoot.looting = false
AutoLoot.lootProc = nil

-- Methods

function AutoLoot.init()
  AutoLoot.lootList = {}
  AutoLoot.looting = false
  AutoLoot.lootProc = nil
end

I had tried a lot different ways using this and nothing work
 
Last edited:
Change where?
3031 is really gold coin ID? How to get the items ID on OTclient?

I had tried a lot different ways using this and nothing work

Check the gold coin id in your items.xml
 
What i dont understand is:
This start looting:
Code:
function AutoLoot.startLooting()
  BotLogger.debug("AutoLoot.startLooting() called")
  AutoLoot.looting = true

  AutoLoot.lootNext()
end

But where the fuck are the part where push the items?
 
What i dont understand is:
This start looting:
Code:
function AutoLoot.startLooting()
  BotLogger.debug("AutoLoot.startLooting() called")
  AutoLoot.looting = true

  AutoLoot.lootNext()
end

But where the fuck are the part where push the items?

Anybody know?
 
What i dont understand is:
This start looting:
Code:
function AutoLoot.startLooting()
  BotLogger.debug("AutoLoot.startLooting() called")
  AutoLoot.looting = true

  AutoLoot.lootNext()
end

But where the fuck are the part where push the items?

Anybody know?
 
Back
Top