Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Some script requests (Say exani tera on cavebot, pickup items from ground)
#1
Hello, 

Ill start doing some 100% afk scripts for this bot.


I need some scripts to work on cavebot please.


1.say exani tera, or say whatever I want trough cavebot per example exura sio "XXXX (Im saying it becouse could be different scripts with ")
2.Script to pickup items from ground to main bp until get X items in bp) per example pickup from ground to main backpack "10" "SD".
3. script to pickup X items to ammunition place (per example pickup 52 arrows)
4.script to drop items in X sqm 
5. script to turn on cavebot if X item
6. action to just turn off cavebot.
6. if X cap go to label > (per example, if <10 cap, go to label DP)


all this scripts to be used on ACTIOn of cavebot, please.

I know some functions I'd asked for is already disponible on tools, but btw I need it on caveboot, just to do it more organizated,


thank you =)
Reply

#2
Hello.

First, i recommend you to read LUA Functions & Variables thread:
|Only Registered members can see download links. | Click here to buy subscription or here to register.

It has the answer for most of your requests. In fact, there are at least one script that you requested that's built-in bot already.
4~5 of 7 scripts that you requests are a simple function that be found on thread above or already has been posted on forums, so you use search to find it:
|Only Registered members can see download links. | Click here to buy subscription or here to register.


I have no problem helping people, but in this case it seems like you haven't even tried to search on forums about those codes. So I'll just post the hard ones or so, and just give you tips on how to find the easiest ones.


1. Search for "say" function on LUA Functions & Variables;


2.
local ITEM = 'sudden death rune' -- name or id
local COUNT = 10
local CONTAINER = 'blue backpack' -- you can use container name or index here.
local LOCATION = { X = 12345, Y = 12345, Z = 1 } -- Ground location to pickup.


ITEM = itemid(ITEM)

local item_count = itemcount(ITEM, CONTAINER)

while item_count < COUNT and topitem(LOCATION.X, LOCATION.Y, LOCATION.Z, false).id == ITEM do
    moveitems(ITEM, CONTAINER, ground(LOCATION.X, LOCATION.Y, LOCATION.Z), (COUNT - item_count))
    wait(500)
    item_count = itemcount(ITEM, CONTAINER)
end


3. You are not clear about if you are going to pickup from floor OR just to refill arrow slow. So if from floor, you can use script above or search for "moveitems" function on LUA Functions & Variables; If you are going refill arrow slot moving from an open container to arrow slow, Built-in, search on Tools->Refill Arrows.


4. Built-in, Cavebot->Drop waypoint.

5. You are not clear about. If item on backpack, on floor, on equipments?

6.
setsettings('Cavebot/Settings/Enabled', false)

7. Search on Forums for "Capacity Checker".
Reply

#3
plese action IF < x items, goto LABEL...
Reply

#4
Hello.

if itemcount('mace') < 10 then
     gotolabel('label_name')
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016