Signup Now
Results 1 to 5 of 5

Thread: Use item on

  1. #1
    Free User
    Join Date
    Jun 2015
    Posts
    14
    Reputation
    10
    Rep Power
    0

    Use item on

    Hello, I'm doing a script on flazzlemaw for feyrist but I need a script to bot to use my small emeralds on the chapel so I can go to the island. Who will help?

    Witam, robie skrypt na flazzlemaw na feyrist lecz potrzebuje skrypt by bot uzywal mi small emeralds na kapliczce bym mogl przejsc do wyspy. Ktos pomoze?

  2. #2
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by kieta View Post
    Hello, I'm doing a script on flazzlemaw for feyrist but I need a script to bot to use my small emeralds on the chapel so I can go to the island. Who will help?

    Witam, robie skrypt na flazzlemaw na feyrist lecz potrzebuje skrypt by bot uzywal mi small emeralds na kapliczce bym mogl przejsc do wyspy. Ktos pomoze?
    1- wrong area, post Lua > Requests

    2-

    https://www.tibiawindbot.com/docs.html#events-useitemon


    local Item = 'Small Diamond'
    local Pos = 22222,33333,5

    if islocation(10) then
    if itemcount(Item) > 0 then
    useitemon(Item, 0, ground(Pos))
    wait(300,500)
    end
    end

  3. #3
    Free User
    Join Date
    Jun 2015
    Posts
    14
    Reputation
    10
    Rep Power
    0
    It does not work, I changed the position id to those that stand, then the ones where the chapel is located and nothing happens

  4. #4
    Free User
    Join Date
    Jun 2015
    Posts
    14
    Reputation
    10
    Rep Power
    0
    i Use this script and works

    local keycount = itemcount('small emerald')
    for index=1,keycount do
    useitemon('small emerald', 0, ground($posx, $posy-1, $posz), '', index) wait(300, 500) -- door located at your left
    end

  5. #5
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by kieta View Post
    It does not work, I changed the position id to those that stand, then the ones where the chapel is located and nothing happens
    local Item = 'small emerald'
    local PosX = 22222
    local PosY = 33333
    local PosZ = 5

    if islocation(10) then
    if itemcount(Item) > 0 then
    useitemon(Item, 0, ground(PosX, PosY, PosZ))
    wait(300,500)
    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
  •