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
script to use destroy field rune in fire field
#1
script to use destroy field rune in fire field ?
Reply

#2
In which circumstance? Any fire field on screen?
You need to give way more details, so I can understand what you need and develop the correct script.
Reply

#3
yes when there is some fire on the screen use the destroy field
Reply

#4
local FIELDS = { 2118, 2119, 2123, 2124, 2131, 2132, 2137, 2138, } -- Fields ids to destroy.
local RUNE_ID = 3148 -- Destroy field rune id.

local tiles = gettiles()
for _, tile in ipairs(tiles) do
    for __, item in ipairs(tile.items) do
        if table.find(FIELDS, item.id) ~= nil then
            useitemon(RUNE_ID, tile.posx, tile.posy, tile.posz)
            wait(800, 1200)
            return
        end
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016