Checking Range with Items menu

User Tag List

Results 1 to 4 of 4
  1. #1
    G0tha's Avatar Member
    Reputation
    9
    Join Date
    Jul 2013
    Posts
    76
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Checking Range with Items

    Hey im working on my lua profile, just looking for something that will allow me to check if i am able to hit my targets with cone of cold, dragon's breath, typhoon, shadowflame etc.
    As you know these abilities will hit target or not depending on target's hitbox so
    Code:
    CheckInteractDistance("unit", distIndex);
    Won't work since some units have too big hitbox and it's checking only from center - center
    For shadowflame, cone of cold, dragon's breath it's just 10 yards so i was wondering if anyone of you know how i can find the list of items that are usable at exactly 10 yards or even only in melee range so i can use
    Code:
    IsSpellInRange
    or
    Code:
    IsItemInRange
    Since mage, nor Warlock have abilites that will work at Melee-10 yards i have to workaround it.

    Thanks for any further suggestions and any helpful advice.

    It's kinda hard to find these items since for example Gnomish Army Knife ressurection will work only with friendly units, others work like aoe.
    Last edited by G0tha; 02-07-2015 at 04:26 PM.

    Checking Range with Items
  2. #2
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Need a guild in the US? Visit murlocs.com

  3. #3
    G0tha's Avatar Member
    Reputation
    9
    Join Date
    Jul 2013
    Posts
    76
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for try, but i guess i just need to find an item that:
    1.Has 10 yards range
    2.Can attack only unfriendly units
    3.Uses a single target spell.
    Something like Gnomish Death Ray - Item - World of Warcraft but between 5-10 range

    I just noticed i don't have to equip the item in bags to check IsItemInRange

    After few hours found mitch0's list:
    Code:
    local FriendItems  = {
        [5] = {
            37727, -- Ruby Acorn
        },
        [8] = {
            34368, -- Attuned Crystal Cores
            33278, -- Burning Torch
        },
        [10] = {
            32321, -- Sparrowhawk Net
        },
        [15] = {
            1251, -- Linen Bandage
            2581, -- Heavy Linen Bandage
            3530, -- Wool Bandage
            3531, -- Heavy Wool Bandage
            6450, -- Silk Bandage
            6451, -- Heavy Silk Bandage
            8544, -- Mageweave Bandage
            8545, -- Heavy Mageweave Bandage
            14529, -- Runecloth Bandage
            14530, -- Heavy Runecloth Bandage
            21990, -- Netherweave Bandage
            21991, -- Heavy Netherweave Bandage
            34721, -- Frostweave Bandage
            34722, -- Heavy Frostweave Bandage
    --        38643, -- Thick Frostweave Bandage
    --        38640, -- Dense Frostweave Bandage
        },
        [20] = {
            21519, -- Mistletoe
        },
        [25] = {
            31463, -- Zezzak's Shard
        },
        [30] = {
            1180, -- Scroll of Stamina
            1478, -- Scroll of Protection II
            3012, -- Scroll of Agility
            1712, -- Scroll of Spirit II
            2290, -- Scroll of Intellect II
            1711, -- Scroll of Stamina II
            34191, -- Handful of Snowflakes
        },
        [35] = {
            18904, -- Zorbin's Ultra-Shrinker
        },
        [40] = {
            34471, -- Vial of the Sunwell
        },
        [45] = {
            32698, -- Wrangling Rope
        },
        [60] = {
            32825, -- Soul Cannon
            37887, -- Seeds of Nature's Wrath
        },
        [80] = {
            35278, -- Reinforced Net
        },
    }
    
    local HarmItems = {
        [5] = {
            37727, -- Ruby Acorn
        },
        [8] = {
            34368, -- Attuned Crystal Cores
            33278, -- Burning Torch
        },
        [10] = {
            32321, -- Sparrowhawk Net
        },
        [15] = {
            33069, -- Sturdy Rope
        },
        [20] = {
            10645, -- Gnomish Death Ray
        },
        [25] = {
            24268, -- Netherweave Net
            41509, -- Frostweave Net
            31463, -- Zezzak's Shard
        },
        [30] = {
            835, -- Large Rope Net
            7734, -- Six Demon Bag
            34191, -- Handful of Snowflakes
        },
        [35] = {
            24269, -- Heavy Netherweave Net
            18904, -- Zorbin's Ultra-Shrinker
        },
        [40] = {
            28767, -- The Decapitator
        },
        [45] = {
            32698, -- Wrangling Rope
        },
        [60] = {
            32825, -- Soul Cannon
            37887, -- Seeds of Nature's Wrath
        },
        [80] = {
            35278, -- Reinforced Net
        },
    }
    Last edited by G0tha; 02-07-2015 at 07:14 PM.

  4. #4
    StinkyTwitch's Avatar Active Member
    Reputation
    40
    Join Date
    Nov 2014
    Posts
    172
    Thanks G/R
    19/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are you using a Lua unlocker? If so which one?

Similar Threads

  1. Help With Items
    By DJGonn in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 10-24-2007, 05:09 AM
  2. Crit chance with items
    By frogtheman in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 10-21-2007, 06:40 PM
  3. Help please with item models
    By Pimpin_N0ob in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 09-02-2007, 10:06 PM
  4. Some problems with Items...
    By Pimpin_N0ob in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 09-02-2007, 03:07 AM
  5. Help with Item.spc
    By a7x Taylor in forum World of Warcraft General
    Replies: 0
    Last Post: 12-07-2006, 07:34 PM
All times are GMT -5. The time now is 09:02 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search