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
How to use refill assassin star?
#1
Hello, thanks all for read!

How to use the refill ammo? I'm trying to use this but not works...

Have script for do this? Check how much assassins star left in hand and refill this if X amount to 100

#2
I will fix it, but you can use this script.
local WEAPON_ID = 7036 -- Weapon id.
local COUNT_REFILL = 10 -- Min. count on hand to equip more.


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

Or this, if you want a bit random:
local WEAPON_ID = 7036 -- Weapon 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 hand_item = lhand()
if (hand_item.id == 0 or (hand_item.id == WEAPON_ID and hand_item.count <= RANDOM_COUNT)) and itemcount(WEAPON_ID) > 0 then
    moveitems(WEAPON_ID, 'lhand', '', 100)
    wait(200, 400)
    RANDOM_COUNT = random(COUNT_REFILL.MIN, COUNT_REFILL.MAX)
end



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016