Jump to content

Zelek

Administrators
  • Posts

    669
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by Zelek

  1. Zelek

    Request Script

    Turn to target: local monstersToTurn = 1 if #g_game.getMonstersAround(1) >= monstersToTurn then g_game.turn(g_game.getBestTurnDirection()) end auto(250)
  2. Zelek

    Request Script

    Cast wave if all monsters within given range are in front of the character and different spell otherwise: local player = g_game.getLocalPlayer() local checkRange = 4 local spellWave = "ten times kamehameha" local spellArea = "genki dama" if g_game.isAttacking() then if #g_game.getMonstersInFront() == #g_game.getMonstersAround(1) and #g_game.getMonstersAround(1) > 0 and #g_game.getMonstersAround(checkRange) == #g_game.getMonstersAround(1) then g_game.talk(spellWave) sleep(900, 1100) elseif #g_game.getMonstersAround(checkRange) >= 1 then g_game.talk(spellArea) sleep(900, 1100) end end auto(100)
  3. Zelek

    Request Script

    Fishing: local player = g_game.getLocalPlayer() local pos = player:getPosition() local offsetX = -3 -- how many sqms to the west/east local offsetY = 0 -- how many sqms to the north/south local fishingRodID = 3483 pos.x = pos.x + offsetX pos.y = pos.y + offsetY g_game.useItemOnPosition(fishingRodID, pos) auto(2000)
  4. Just to make it clear, when the bot crashes it also closes your client? Or what exactly is happening Edit: I've recognized the issue, it will be fixed in the next beta release.
  5. Zelek

    suggestion

    I'll add an option to send keystrokes as in the previous version. Also you are encouraged to send crash logs to this topic: First of all, this is a beta version and every bit of feedback is appreciated and crashes are more than expected from my end. Some of the functions of the bot may not work on specific clients because of the protocol and/or other differences between the servers. In that case I'll be adding few more functions to replace already implemented alerts with scripts that could be customized to fit the server. I highly disagree on this one, I've added a lot of features to the targeting and it was needed to create a separate panel for it. For example you can now set the bot to follow or run away from the creature, as well as set different options based on specific creature count and more. Just mess around with it and you will see how much advanced it is to the prior system. I like the suggestion of moving the checkbox into the grid view. You can add a hotkey script to quickly activate/deactive the cavebot and adding more controls to the UI doesn't feel like necessary for me right now. It does it already if saved in the default locations. You should be using stands pretty much only when changing floors or if you really need to ensure your character stands on a specific location. Use nodes otherwise. Also double clicking on the ID column of waypoints sets the current waypoint to the clicked one so you can start wherever you want. Also the bot has never crashed for me while I've tested it at DBL, can you provide more details about that?
  6. Zelek

    scripts

    Please create a new post with your request here using english:
  7. Zelek

    Help..

    send me your discord in private message @Viperek18 Edit: Solved, generally everything worked. Author was just confused.
  8. Zelek

    Help..

    @Viperek18restart the client and bot and don’t run any of them as administator
  9. The autor of the post already figured it out. Probably didn't change the executable name to "otclient".
  10. Zelek

    Request Script

    You can load the “Keep Target” script that is already included in the bot. Keep soul at 100: local player = g_game.getLocalPlayer() if player:getSoul() ~= 100 then g_game.talk("furie") sleep(900, 1100) end auto(100)
  11. Zelek

    Help..

    Did you enable each method individually as well as global spell/item checkbox?
  12. Zelek

    Changes

    You can read the overview here: https://otclientbot.com/features The bot was designed to work on all otclients, but those heavily modified may not work for now.
  13. Yeah for some reason the 14 days didn't apply. Will fix it in a moment. Edit: Should be fixed now.
  14. Write a brief explanation of what you would like the script to do. Please make sure that the script you requested isn't already available at the forum, otherwise your post will be removed. List of scripts: Use spell based on player's soul Auto fishing Wave/area spell Turn to target Eat food Drop specified items on the ground Use item on the map based on character's position Cast targeted spell with health check
  15. If you have encountered a client crash please attach the crashreport.log in the attachement to your new post. This file should be located in the client's directory if a crash occured. All posts without an attached crashreport.log will be deleted and user will be warned.
  16. Make sure to follow these steps to correctly launch the bot and minimize the issues that could occur: It's possible that your antivirus software could detect the bot as a virus. It's a false positive and bot should be added as an exception. Rename the client's name you would like to use to "otclient". (for example: dracona.exe -> otclient.exe) Run the desired client and wait until it fully loads. Launch bot and wait for a few seconds as it tends to crash the client on a startup occasionally. If in the title of the bot's window you can't see your character's name or "Logged off" then the DLL injection failed. Try for a few more times and if it continues to not inject try reinstalling the bot to another location (for example desktop). If there is an error window with "Initialization failed" message, please try again for a few times and if it doesn't work report to the forum in the Bug Report section specifying the client you tried. Any crash should be reported to this thread created for the crash reports exclusively. The bot should work with both openGL and DirectX clients, but it's better to use DirectX client if possible.
  17. You can download it here: OTClientBot-v2.0.0-beta1 Also please remember to install Visual C++ Redistributable for Visual Studio 2015 x86 if you haven't already.
×
×
  • Create New...