Hello guys, can anyone help me fix this script, its not working..
Also, is it possible to move items with different ids from hand? i mean, sometimes it get stuck as they conjure bolts and it goes to the hand... maybe if i setup minimum different to 0 it might work properly
local COUNT_PICKUP = { MIN = 6, 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.
local ROYAL_ID = 7037
if RANDOM_COUNT == nil then
RANDOM_COUNT = random(COUNT_PICKUP.MIN, COUNT_PICKUP.MAX)
end
local player_lhand = lhand()
if player_lhand.id == 0 or (player_lhand.id == ROYAL_ID and player_lhand.count <= RANDOM_COUNT) and itemcount(ROYAL_ID) > 0 then
moveitems(ROYAL_ID, player_lhand, '0', 100)
wait(300)
RANDOM_COUNT = random(COUNT_PICKUP.MIN, COUNT_PICKUP.MAX)
end
Also, is it possible to move items with different ids from hand? i mean, sometimes it get stuck as they conjure bolts and it goes to the hand... maybe if i setup minimum different to 0 it might work properly