Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Jul 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0

    Equip Dwarven ring if drunk.

    I need a persistent for equip dwarven ring if drunk.
    Atm im using this one, but it doenst work properly, sometimes im drunk and walking all over the place and it doesnt equip the ring.

    Code:
    auto(200)
    if $drunk then
        equipitem('dwarven ring', 'finger')
         wait(20000)
    else
             moveitems('dwarven ring', 0, "finger")
    end

    Thanks.

  2. #2
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    init start
    local ring = {normal = 3097, use = 3099}
    init end

    auto(200) dontlist()
    if $drunk then
    if itemcount(ring.normal) > 0 and $finger.id ~= ring.use then
    equipitem(ring.normal, 'finger') waitping()
    end
    else
    wait(30000, 50000)
    moveitems(ring.use, $back.id, 'finger', 1) waitping()
    end
    Last edited by Donatello; 01-15-2017 at 06:48 PM.

  3. #3
    Free User
    Join Date
    Jul 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    thanks a lot, ill use this one

 

 

Posting Permissions

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