Log in

View Full Version : ive tried a few i need a Auto Amulet lua



david4200
06-12-2017, 02:09 AM
ive tried a few n ran them they just bounce back off my loader if I can get one I can change just the name of ammy would be nice I really need a garlic necklace user I got a life ring ones works good 3083 is id for garlic anyone give me a hand?

david4200
06-13-2017, 07:43 PM
bump please?

bombka1234
06-14-2017, 11:46 AM
*****

david4200
06-17-2017, 02:37 AM
bump please anyone an auto garlic script

Oscagi
06-18-2017, 11:31 AM
bump please anyone an auto garlic script

It Should be something like that.
BTW u have to add it to a Module.


function AutoAmulet(id)
if Self.Amulet().id ~= ID then
if Self.ItemCount(ID) > 1 then
Self.Equip(ID, amulet) -- I dont remember if its amulet or "amulet". tryit.
end
end
end

david4200
06-20-2017, 07:19 AM
what do u mean ohh I cant save this on note pad??? is that what im doing wrong?

Samoxx
12-25-2017, 12:38 AM
-- Amulet #1
--As title say, script equip amulet when actually is out --

local UseAmulet = true
local Amulet = 817 -- Item ID of the amulet, with the most priority, that you want to equip. (Default: Magma Amulet)

-- Do not edit anything below
Module.New('equip amulet', function(module)
if (UseAmulet) and (Self.Amulet().id ~= Amulet) and (Self.ItemCount(Amulet) > 0) then
Self.Equip(Amulet, "amulet")
module:Delay(1000)
end
end)