Jump to content

insanity

Members
  • Posts

    80
  • Joined

  • Last visited

Reputation Activity

  1. Like
    insanity got a reaction from triciamc in Bot tries attacking friendly units   
    Fixed it with adding ObjectManager.Target.IsAttackable as condition in my fightclass.
    This is strange tho, as I've never seen this problem before.
  2. Like
    insanity got a reaction from S1G2E3 in Unable to cast Faerie Fire (Feral)   
    Try cast the spell with lua:
    <NotSpellIsLuaScript>true</NotSpellIsLuaScript> <SpellName>CastSpellByName("Faerie Fire (Feral)()");</SpellName> You need parentheses at the end () when the spell already contains parentheses.
  3. Like
    insanity got a reaction from Arcangelo in Looting inventory item containing quest items   
    Hmm, I might have explained my issue in a wrong way.
    I do not want to start a quest from an item (in inventory). 
    I want to open an item-container in my inventory containing items. eg. http://db.vanillagaming.org/?item=11107 (This item-container is provided when accepting a quest).
     
  4. Like
    insanity got a reaction from Chiruca in Unable to cast Faerie Fire (Feral)   
    Try cast the spell with lua:
    <NotSpellIsLuaScript>true</NotSpellIsLuaScript> <SpellName>CastSpellByName("Faerie Fire (Feral)()");</SpellName> You need parentheses at the end () when the spell already contains parentheses.
  5. Like
    insanity got a reaction from mentas in Force loot BOP items   
    You can find my addon attached.
    1. Download the addon.
    2. Extract the folder inside and put it into your addon folder (wow/Interface/AddOns)
    bopLoot.7z
  6. Like
    insanity got a reaction from mentas in Force loot BOP items   
    Made an addon myself to get this to work:
     
    <NAMEOFADDON>.OnLoad= function () this:RegisterEvent("LOOT_OPENED"); this:RegisterEvent("LOOT_BIND_CONFIRM"); end; <NAMEOFADDON>.OnEvent = function () if (event == "LOOT_BIND_CONFIRM") then LootSlot(arg1) StaticPopup_OnClick(StaticPopup1, 1) end if (event == "LOOT_OPENED") then for i=1,GetNumLootItems() do LootSlot(i) end end end  
  7. Like
    insanity reacted to Droidz in (Bug) To far away to interact with NPC's   
    Hello, 
    Try to disable option "Calculate interact/combat distance by target size" in advanced general settings
  8. Like
    insanity got a reaction from hoganhohololo in "Wanding"   
    This.
    Wanding at the current state looks really bottish.
    Would really like an update for this..
  9. Like
    insanity got a reaction from Droidz in Create Healthstones (warlock fightclass)   
    I managed to get this to work by using lua script. Currently using the CastSpell() in combination with GetSpellTabInfo()
    CastSpellByName is not working for Healthstones for some odd reason (Elysium server)
    name,texture,offset,numSpells = GetSpellTabInfo(3); CastSpell((offset+1),"spell");  
    http://wowprogramming.com/docs/api/CastSpell
    http://wowprogramming.com/docs/api/GetSpellTabInfo
     
×
×
  • Create New...