Zelek Posted October 8, 2020 Share Posted October 8, 2020 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 1 Link to comment Share on other sites More sharing options...
legend Posted October 9, 2020 Share Posted October 9, 2020 (edited) if possible reattack script and the script that keep my furie at 100 (rage on dbl) Edited October 10, 2020 by legend Link to comment Share on other sites More sharing options...
Zelek Posted October 9, 2020 Author Share Posted October 9, 2020 1 hour ago, legend said: if possible reattack script and the script that keep my furie on 100 (rage on dbl) 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) 1 Link to comment Share on other sites More sharing options...
Aloe vera Posted October 10, 2020 Share Posted October 10, 2020 Hi is it possible to add scripts that already have been added on the last forum ? For example for spell, auto turn, fishing... and many more ? Link to comment Share on other sites More sharing options...
Zelek Posted October 10, 2020 Author Share Posted October 10, 2020 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) Link to comment Share on other sites More sharing options...
Zelek Posted October 10, 2020 Author Share Posted October 10, 2020 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) Link to comment Share on other sites More sharing options...
Zelek Posted October 10, 2020 Author Share Posted October 10, 2020 Turn to target: local monstersToTurn = 1 if #g_game.getMonstersAround(1) >= monstersToTurn then g_game.turn(g_game.getBestTurnDirection()) end auto(250) Link to comment Share on other sites More sharing options...
Zelek Posted October 10, 2020 Author Share Posted October 10, 2020 Eat specified food: local foodId = 3725 -- brown mushroom g_game.use(foodId) auto(30000, 60000) Link to comment Share on other sites More sharing options...
Aloe vera Posted October 10, 2020 Share Posted October 10, 2020 DBL and last script if its possible target spell on target if health is bigger then x Link to comment Share on other sites More sharing options...
Zelek Posted October 10, 2020 Author Share Posted October 10, 2020 14 minutes ago, Aloe vera said: DBL and last script if its possible target spell on target if health is bigger then x 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) Link to comment Share on other sites More sharing options...
Kurwiererererer Posted October 11, 2020 Share Posted October 11, 2020 Use item on ground near you, for skilling Attack Speed on Saiyans Return Drop usless items on ground ( I using puar for loot items, but looting everything on this server ) Link to comment Share on other sites More sharing options...
Zelek Posted October 11, 2020 Author Share Posted October 11, 2020 48 minutes ago, Kurwiererererer said: Drop usless items on ground ( I using puar for loot items, but looting everything on this server ) 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) Link to comment Share on other sites More sharing options...
Zelek Posted October 11, 2020 Author Share Posted October 11, 2020 49 minutes ago, Kurwiererererer said: Use item on ground near you, for skilling Attack Speed on Saiyans Return 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}) Link to comment Share on other sites More sharing options...
Kurwiererererer Posted October 11, 2020 Share Posted October 11, 2020 3 minutes ago, Zelek said: 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}) Can you change it, to find pos by item id? Link to comment Share on other sites More sharing options...
Zelek Posted October 11, 2020 Author Share Posted October 11, 2020 @KurwierererererCurrently not possible. Link to comment Share on other sites More sharing options...
Karma1 Posted October 12, 2020 Share Posted October 12, 2020 Hi how do i make it use spells from hotkeys and heal from hotkey as its just spamming the text and i got muted. otherwise great work !! Link to comment Share on other sites More sharing options...
Zelek Posted October 12, 2020 Author Share Posted October 12, 2020 @Karma1please make a new topic in the proper section. This topic wasn’t made for asking questions. Link to comment Share on other sites More sharing options...
aline Posted October 12, 2020 Share Posted October 12, 2020 could someone do a healing script for me? example: when the% of the character reaches 95% use f1 and magic attack? example use magic on hotkey f4 Link to comment Share on other sites More sharing options...
Carlos111 Posted October 12, 2020 Share Posted October 12, 2020 script that allowed to run up / down (card in time room running - it is very slow on cave bot) Link to comment Share on other sites More sharing options...
mlodykomar3 Posted October 12, 2020 Share Posted October 12, 2020 Give good scripts for heal and mana for dbl becuse this heal system in bot its rly crazy all the time spam spells or senzu Link to comment Share on other sites More sharing options...
bloodmare5 Posted October 13, 2020 Share Posted October 13, 2020 Can u give good scripts for priogames? heal/senzu/spell cast? Link to comment Share on other sites More sharing options...
Zelek Posted October 13, 2020 Author Share Posted October 13, 2020 22 hours ago, aline said: example: when the% of the character reaches 95% use f1 if not g_game.isOnline() then return end local player = g_game.getLocalPlayer() if player:getHealthPercent() <= 95 then g_game.sendKey("F1") end auto(100) 22 hours ago, aline said: and magic attack? example use magic on hotkey f4 if not g_game.isOnline() then return end if g_game.isAttacking() then g_game.sendKey("F4") end auto(100) Link to comment Share on other sites More sharing options...
Zelek Posted October 13, 2020 Author Share Posted October 13, 2020 19 hours ago, mlodykomar3 said: Give good scripts for heal and mana for dbl becuse this heal system in bot its rly crazy all the time spam spells or senzu It does not, you just set it up incorrectly. Please stop posting in this topic without actual script request and create a new topic in Questions board instead. Link to comment Share on other sites More sharing options...
Zelek Posted October 13, 2020 Author Share Posted October 13, 2020 3 hours ago, bloodmare5 said: Can u give good scripts for priogames? heal/senzu/spell cast? Please stop posting in this topic without an actual script request. Your post doesn't contain any description other than "good script"... Link to comment Share on other sites More sharing options...
Xanav Posted October 13, 2020 Share Posted October 13, 2020 Need script for transform on db OTS, and anty kick for 4 hours. Link to comment Share on other sites More sharing options...
Recommended Posts