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
magic fragements
#1
On Elderan there is ammunition called magic fragments for mages, would be cool to have a possibility to put them on refill ammo
|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="Smile" title="Smile" class="smilie smilie_1" />
Reply

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

Hello.

Can you move it to your belt/ammo slot and run this code?
print(belt())
Copy and paste the results here, so I can get its id and check!
Reply

#3
- {count = 77, id = 5508, name = ""}
Reply

#4
Hello.

-- EDIT START --

I just released a new version that contains magic fragment on Refill Ammo. Just redownload and reinstall the latest Kasteria OTBot version:
|Only Registered members can see download links. | Click here to buy subscription or here to register.


-- EDIT END --


I will add that on next release, but you can use this script.
local AMMO_ID = 5508 -- Ammo id.
local COUNT_REFILL = 10 -- Min. count on hand to equip more.


local item = belt()
if (item.id == 0 or (item.id == AMMO_ID and item.count <= COUNT_REFILL)) and itemcount(AMMO_ID) > 0 then
    moveitems(AMMO_ID, 'belt', '', 100)
    wait(200, 400)
end

Or this, if you want a bit random:
local AMMO_ID = 5508 -- Ammo id.
local COUNT_REFILL = { MIN = 5, MAX = 10 } -- The minimum amount to have in hand, script will sort a random value from this range. Once you reach that amount, it will move more from your bp to your hand.

if RANDOM_COUNT == nil then
    RANDOM_COUNT = random(COUNT_REFILL.MIN, COUNT_REFILL.MAX)
end

local item = belt()
if (item.id == 0 or (item.id == AMMO_ID and item.count <= RANDOM_COUNT)) and itemcount(AMMO_ID) > 0 then
    moveitems(AMMO_ID, 'belt', '', 100)
    wait(200, 400)
    RANDOM_COUNT = random(COUNT_REFILL.MIN, COUNT_REFILL.MAX)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016