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
i try to write scrips that cast exevo con if less than 85 arrows in arrow slot
#1
i try to write script that cast exevo con if less than 85 arrows in arrow slot... just it simple for nostalrius and cant make it from this beg

i only made it to not more than cap but i auto loot items and it fucks. need just cast exevo con if less than 85 arrows in arrow slot so it will be fully refiled every 15 shots



local spell = 'exevo con'
local spell_mana = 40
local capacity = 760 -- Stops if your capacity is equal or lower than this value.

if mp() >= spell_mana and cancast() and cap() > capacity then
    cast(spell)
    wait(1000)
    stackitems()
    wait(800)
end

#2
Hello.

The script above was developed by me:
|Only Registered members can see download links. | Click here to buy subscription or here to register.

There's no changes on it, so it seems that you didn't tried to do what you said.

local item = 'arrow'
local spell = 'exevo con'
local spell_mana = 40
local capacity = 760 -- Stops if your capacity is equal or lower than this value.
local min_count = 85

if mp() >= spell_mana and cancast() and cap() > capacity and itemcount(item, '', true) < min_count then
    cast(spell)
    wait(1000)
    stackitems()
    wait(800)
end

Or if you don't care about capacity:
local item = 'arrow'
local spell = 'exevo con'
local spell_mana = 40
local min_count = 85

if mp() >= spell_mana and cancast() and itemcount(item, '', true) < min_count then
    cast(spell)
    wait(1000)
    stackitems()
    wait(800)
end

#3
yes i dont care about capa. thanks so much this second sript meets my needs!



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016