Jump to content

Zelek

Administrators
  • Posts

    669
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by Zelek

  1. that’s nothing to worry about
  2. You can adjust your targeting priorities to accomplish what you want. I’ll be optimizing the cavebot logic in future beta releases.
  3. Zelek

    Request Script

    @KurwierererererCurrently not possible.
  4. Zelek

    Request Script

    if not g_game.isOnline() then return end local player = g_game.getLocalPlayer() local pos = player:getPosition() local offsetX = 2 -- how many sqms to the west/east local offsetY = 0 -- how many sqms to the north/south g_game.useMapItem({x = pos.x + offsetX, y = pos.y + offsetY, z = pos.z})
  5. Zelek

    Request Script

    if not g_game.isOnline() then return end local itemsToDrop = {3364, 3365} -- populate this table with items IDs you would like to drop local containers = g_game.getContainers() for v, container in pairs(containers) do if container:getItemsCount() > 0 then local containerItems = container:getItems() for j, item in pairs(containerItems) do for k, itemId in pairs(itemsToDrop) do if item:getId() == itemId then g_game.moveItem(item, g_game.getLocalPlayer():getPosition(), item:getCount()) return end end end end end auto(1000)
  6. It's fine I can test it on my own. I'll let you know in this topic if I can't reproduce the issue.
  7. I don’t think that DBL generates it. Also it crashes the bot not the client, right?
  8. Zelek

    Ntsw

    You have already created the post about this server and I have already answered you. Please stop duplicating posts.
  9. Well you don’t need the crash report because you just described the issue. I’ll check it out.
  10. Close the client, it can't install the dll because it's already being used.
  11. Download new version.
  12. You can download it here: OTClientBot-v2.0.0-beta2 Also please remember to install Visual C++ Redistributable for Visual Studio 2015 x86 if you haven't already. List of changes: Stability improvements Added support for sending keys instead of spells (currently supporting F1-F12, all you have to do is type for example "F5" instead of spell name) Added new lua function: g_game.sendKey(string key) Fixed client not closing correctly after attaching a bot Fixed update dialog. Edit: Seems like looting is broken in this version, it will be fixed in the next beta.
  13. Did you even try to read the forum for some informations? Any crash should be reported to this thread created for the crash reports exclusively. Did you launch DirectX or openGL version of the client?
  14. Is you cavebot enabled? Looting only works when character is currently cavebotting.
  15. Did you add atleast one item to the loot list and configured looting destinations?
  16. Okay so first of all the kind of topic you have created is considered a spam post since you don't explain anything other than "not working". You didn't even specify the server you are playing at. Currently there is no way to use spells if server you are playing at is using other way to cast them than sending messages. I'll add an option to send keystrokes for those servers, it will be added in the next beta release. You can set two options in the targeting to accomplish that. If server supports it use "Chase" as a stance, "Reach" otherwise. Okay, what's not working exactly?
  17. Zelek

    Request Script

    Cast spell if character's health is atleast at the specified amount: local healthToCast = 75 local spellToCast = "exori hur" local player = g_game.getLocalPlayer() if g_game.isAttacking() and player:getHealthPercent() >= healthToCast then g_game.talk(spellToCast) sleep(900, 1100) end auto(100)
  18. Author of the post didn't change client's name to "otclient".
  19. Zelek

    Hi Bug 1 FPS

    NTSW doesn’t seem to work for now, I’ll try to add a support to it in future updates tho.
  20. Please provide more informations, I can't read in your mind to know which server it is. Also, do you get the initialisation error or does it simply not show your character name in the bot title?
  21. Zelek

    Request Script

    Eat specified food: local foodId = 3725 -- brown mushroom g_game.use(foodId) auto(30000, 60000)
×
×
  • Create New...