Jump to content

Existing

Player
  • Content count

    6
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Existing

  • Rank
    Newcomer
  1. Existing

    Auto delete soul shard script / macro

    Hi Xashe, yeah that is a pretty common macro i found in several places. The problem i had with it is that it only deletes soul shards from "soul shard bags". My macro deletes them no matter in what bag and also allows you to specify how many shard you want to keep. This is especially useful when you don't have a soul shard bag. btw, thx for the guide. I use it all the time, pretty great resource!
  2. Existing

    Auto delete soul shard script / macro

    I tried Necrosis but it didn't work for me. I get LUA errors. Which version do you use?
  3. I was annoyed by too many soul shards in my bags. I wasn't satisfied with the existing macros so i mad my own one. This macro will run through all items in all your bags and delete soul shards over your defined threshold. For this macro to work you need the addon "Super Macro". After the addon in installed create a new macro. Add this code in the right text area (extended lua code): function delShards(number) i=1; for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Soul Shard") then if i > number then DEFAULT_CHAT_FRAME:AddMessage("Deleting "..name.." "..i); PickupContainerItem(bag,slot); DeleteCursorItem(); end; i=i+1; end; end; end; end; Add this code to the left text area: /script delShards(5) In this example all shard above 5 will be deleted. You can enter any number there. You even can combine the code on the left with a spell if you want. Like this: /cast Drain Soul(Rank 1) /script delShards(5) This casts Drain Soul and deletes a shard at the same time. Here is an example of how it should look like with a different macro tho: Hope this helps someone. Greetings
  4. Existing

    I am stuck on the boat to the barrens

    Hey again, the summon trick worked. I am free. :) Thx all
  5. Existing

    I am stuck on the boat to the barrens

    Hi guys, sadly i was not aware of this "exploit" so i don't have any recordings of it. I have no guild but i will try to find a warlock in the meantime. Thx for letting me know.
  6. Hi, last night (like 8 hours ago) i got on the boat to reach the barrens from STV. Some guy was funny and mind controlled me immediately before the loading screen appeared . I got disconnected and since then i can't see my character anymore. I just see a blue screen and my interface. I can't logout and i can't use the auto unstuck feature, cause apparently i am "moving". I created a ticket in game but did not get any response to that so far. Since i cannot play at all i am getting a bit impatient. Would be great to get help this way if possible. Thanks
×