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
Conjure Arrow
#1
During my hunt i would like to make arrow/bolts when i have x number of arrow/bolts, how can i do that?

#2
Hello.

You should request scripts on Scripts -> Request according to Bot you are using, i've moved it to the correct place.
local CONFIG = {
  AMMO = 'arrow', -- Ammo name or id.
  COUNT = 100, -- If lower than this count then make ammo.
  SPELL = 'exevo con', -- Ammo spell.
  MANA = 200, -- Only makes ammo if your mana is equal or higher than this.
  SAFE_HPPC = 50, -- Only makes ammo if your health % is equal or higher than this.
  CHECK_MONSTERS = false, -- If enabled then only makes ammo if no monsters on screen, except if you have zero ammo.
}

if connected() then
  local ammoCount = itemcount(CONFIG.AMMO, '', true)
  if (ammoCount == 0 or (ammoCount < CONFIG.COUNT and (CONFIG.CHECK_MONSTERS == false or (CONFIG.CHECK_MONSTERS and maround() == 0)))) and mp() >= CONFIG.MANA and hppc() >= CONFIG.SAFE_HPPC then
      cast(CONFIG.SPELL)
  end
end

#3
Hi dude! Thanks for the answer. However, it showing this error: Core:Lua:ExecuteScript
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Big Grin" title="Big Grin" class="smilie smilie_4" />oString
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Tongue" title="Tongue" class="smilie smilie_5" />ersistent01: 3: '}' expected (to close '{' at line 1) near 'COUNT'
local CONFIG = {
    AMMO = 'arrow' -- Ammo name or id.
    COUNT = 100 -- If lower than this count then make ammo.
    SPELL = 'exevo con' -- Ammo spell.
    MANA = 200 -- Only makes ammo if your mana is equal or higher than this.
    SAFE_HPPC = 50 -- Only makes ammo if your health % is equal or higher than this.
    CHECK_MONSTERS = false -- If enabled then only makes ammo if no monsters on screen, except if you have zero ammo.
}

if connected() then
    local ammoCount = itemcount(CONFIG.AMMO, '', true)
    if (ammoCount == 0 or (ammoCount < CONFIG.COUNT and (CONFIG.CHECK_MONSTERS == false or (CONFIG.CHECK_MONSTERS and maround() == 0))) and mp() >= CONFIG.MANA and hppc() >= CONFIG.SAFE_HPPC then
        cast(CONFIG.SPELL)
    end
end

#4
Sorry, i forgot some commas. I just edited my post, copy the script again.

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Now in console appear this message, sorry to bother you.


Core:Lua:ExecuteScript
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Big Grin" title="Big Grin" class="smilie smilie_4" />oString
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Tongue" title="Tongue" class="smilie smilie_5" />ersistent01: 12: ')' expected near 'then'

#6
Damn. Try again xDDD

#7
|Only Registered members can see download links. | Click here to buy subscription or here to register.
Its work now!! Thanks alot dude
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Big Grin" title="Big Grin" class="smilie smilie_4" />



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016