Signup Now
Results 1 to 2 of 2

Thread: Help

  1. #1
    Banned
    Join Date
    Jan 2015
    Location
    Cuiaba - MT
    Posts
    498
    Reputation
    21
    Rep Power
    0

    Help

    i need one hotkey to use steath ring if have 3 monsters on 1 sqm difference, i have one but he uses, when see 3 mobs :/

  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 gponce View Post
    i need one hotkey to use steath ring if have 3 monsters on 1 sqm difference, i have one but he uses, when see 3 mobs :/
    local monsters = {'monster name'}

    auto(200)

    if maround(7,unpack(monsters)) >= 3 then ----7 sqm radius, >= 3 monsters at a radius 7 sqm
    equipitem('stealth ring', 'finger', mainbp)
    else
    unequipitem('finger')
    end


    1 sqm

    local monsters = {'monster name'}

    auto(200)

    if maround(1,unpack(monsters)) >= 3 then ----1sqm radius, >= 3 monsters at a radius 1sqm
    equipitem('stealth ring', 'finger', mainbp)
    else
    unequipitem('finger')
    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
  •