XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 7 of 7

Thread: ive tried a few i need a Auto Amulet lua

  1. #1

    Join Date
    Jan 2017
    Posts
    57
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    ive tried a few i need a Auto Amulet lua

    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?

  2. #2

    Join Date
    Jan 2017
    Posts
    57
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    bump please?

  3. #3

    Join Date
    Oct 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    *****

  4. #4

    Join Date
    Jan 2017
    Posts
    57
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    bump please anyone an auto garlic script

  5. #5
    Oscagi's Avatar
    Join Date
    Aug 2014
    Location
    Spain
    Posts
    237
    Mentioned
    27 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by david4200 View Post
    bump please anyone an auto garlic script
    It Should be something like that.
    BTW u have to add it to a Module.
    Code:
    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


    REMEMBER TO SAY THANKS.

  6. #6

    Join Date
    Jan 2017
    Posts
    57
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    what do u mean ohh I cant save this on note pad??? is that what im doing wrong?

  7. #7
    Samoxx's Avatar
    Join Date
    Jan 2017
    Location
    Egypt
    Posts
    15
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    -- 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)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •