Jump to content

Nax

WRobot user
  • Posts

    96
  • Joined

  • Last visited

Bug Report Comments posted by Nax

  1. Hello, @droidz. if you can hook on to 0x0081AC90 then edit the list before it gets sent back the server, you can edit the reason why ClearTarget its bugged. this is the code they are blocking it with.

     

    rqQrlXRwJExif(EtuqVyQJENaavmlAb==nil)then EtuqVyQJENaavmlAb=ClearTarget ClearTarget=function() if(issecure())then EtuqVyQJENaavmlAb() else eTGebH={GetFramesRegisteredForEvent("MACRO_ACTION_FORBIDDEN")} MmqNBNB=getn(eTGebH) for mEkEL=1,MmqNBNB do eTGebH[mEkEL]:GetScript("OnEvent")(eTGebH[mEkEL],"MACRO_ACTION_FORBIDDEN","ClearTarget()") end end end endWHISPERCHAT_MSG_ADDON

     

  2. My Code 

    nternal static void SearchForBags()
            {
                BagIndex.Clear();
                foreach (var item in Bag.GetBagItem())
                {
                    if(item.Type == WoWObjectType.Container)
                    {
                        if(item.InBag)
                        {
                            Int32[] s = Bag.GetItemContainerBagIdAndSlot(item.Entry).ToArray();
                            if (s != null && !BagIndex.Exists(x => x.Name == item.Name))
                            {
                                var Name = item.Name;
                                var Slots = BagSlotReader(s[0], s[1]);
                                var entry = item.Entry;
                                BagIndex.Add(new BagClass(Name, Slots, entry, s));
                            }
                        }
                    }
                }
            }

     

×
×
  • Create New...