Advertisement
soulmaestro

handy WoW-macro's

Oct 11th, 2018 (edited)
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. A macro that tells you if your realm is connected to other realms and lists all connected realms:
  2. ```
  3. /run local realms = GetAutoCompleteRealms() s="" if(realms[1]) then s="\nConnected Realms:" for k, v in pairs(realms) do s=s.."\n"..v end else s="Your realm is not connected." end print(s)
  4. ```
  5. -----------------------------
  6. to know on which realm you are after joining a (farm-)group.
  7. edit in 2023: this doesn't gives you the realm you phase to, just the realmname your toon is on:
  8. /run local realmName = GetRealmName() DEFAULT_CHAT_FRAME:AddMessage("You are currently on realm: " .. realmName)
  9. -----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement