Signup Now
Results 1 to 8 of 8
  1. #1
    Free User Shova's Avatar
    Join Date
    Dec 2013
    Posts
    33
    Reputation
    10
    Rep Power
    0

    E - Ring changer/Might Ring changer/SSA changer

    As the title says looking for these scripts.

  2. #2
    Free User Shova's Avatar
    Join Date
    Dec 2013
    Posts
    33
    Reputation
    10
    Rep Power
    0
    Also would like to know how to add people for sio list.

  3. #3
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0
    I think should be something like this:
    Code:
     auto(200)
    equipitem("might ring", 'finger') 
    But need the structure of you need like

    Code:
     
      auto(200)
    if $cap < 10 then
    equipitem("might ring", 'finger') 
    end

    :P

  4. #4
    Free User wizard's Avatar
    Join Date
    Dec 2013
    Location
    New Zealand
    Posts
    46
    Reputation
    12
    Rep Power
    0
    Was E-Ring energy ring? If so, as a mage i would do this one:

    PHP Code:
     auto(200)
      if 
    not $manashielded then
      equipitem
    ('energy ring''finger'wait(300500)
      
    end 

    if its not a mage, just remove the 'if not $manashield then' and the 'end'.
    For the Might Ring, like User Not Found wrote before:

    PHP Code:
      auto(200)
      
    equipitem('might ring''finger'wait(300500


    AutoSSA

    PHP Code:
     auto(1000)
      if 
    $neck.id ~= 3081 then
      equipitem
    ('Stone Skin Amulet''Neck'wait(300500)
      
    end 

    I hope I could help you.

  5. #5
    Free User wizard's Avatar
    Join Date
    Dec 2013
    Location
    New Zealand
    Posts
    46
    Reputation
    12
    Rep Power
    0
    English Please guys! What was the solution for your problem? Could be useful for other people.

  6. #6
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0
    @Wizard, the solution is there in topic: http://forums.tibiawindbot.com/forum...g-msvcp100-dll

    Only use the search function!

  7. #7
    Free User wizard's Avatar
    Join Date
    Dec 2013
    Location
    New Zealand
    Posts
    46
    Reputation
    12
    Rep Power
    0
    Quote Originally Posted by User Not Found;n565
    @Wizard, the solution is there in topic: http://forums.tibiawindbot.com/forum...g-msvcp100-dll

    Only use the search function!
    Lol? I asked HIM to post here how he fixed his problem that might be useful for the others. The solution you are giving to me works for some people, not for everyone.

  8. #8
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    init start
    local RING = {NORMAL = "energy ring", USE = 3088}
    init end

    auto(200)
    if not $manashielded and $finger.id ~= RING.USE then
    if itemcount(RING.NORMAL) > 0 then
    equipitem(RING.NORMAL, "finger")
    waitping()
    end
    end


    init start
    local EQUIP_HPPC = math.random(50, 55)
    local RING = "might ring"
    init end

    auto(200)
    if $hppc < EQUIP_HPPC and $finger.id ~= itemid(RING) then
    if itemcount(RING) > 0 then
    equipitem(RING, "finger")
    waitping()
    end
    end


    init start
    local EQUIP_HPPC = math.random(50, 55)
    local AMULET = "stone skin amulet"
    init end

    auto(200)
    if $hppc < EQUIP_HPPC and $neck.id ~= itemid(AMULET) then
    if itemcount(AMULET) > 0 then
    equipitem(AMULET, "neck")
    waitping()
    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
  •