Hello, I'm pretty bad on lua code, and started using TellMeWhen few days ago.. I'd like a code that would seek for any magical buff on target
Can anyone help me pls ?
Hello, I'm pretty bad on lua code, and started using TellMeWhen few days ago.. I'd like a code that would seek for any magical buff on target
Can anyone help me pls ?
I am sometimes bored to wander and do quests and want to immediately start fighting with other characters in PvP matches. But my character is very weak, I just probably do not know how to quickly raise the levels. I'm thinking of buying levels for my Orc here <spam URL to powerleveling service removed by admin>. Like it looks reliable and not so expensive. Have you ever paid for character levels? How it works?
All inactive WoW accounts will allow full access to the game and all your characters without a subscription until June 24, 2018. Access will be to up to Warlords of Draenor or any later expansion purchased.
See: https://welcomeback.worldofwarcraft.com
For Discussions version of this thread, see: https://wowwiki.wikia.com/d/p/3100000000000000226
Both Raylan13 and I got into the Battle for Azeroth alpha, so if you have any questions about things we can look into, please reply in this thread.
I don't know about Raylan13, but I'm probably mostly going to try stuff on a Blood Elf Vengeance Demon Hunter, so please don't ask me about class-specific stuff.
If you want to talk about this in Discussions, see: http://wowwiki.wikia.com/d/p/3100000000000000171
Now that Legion is winding down, what did you think of it? What was best about it? What was worst? Most memorable parts?
For the Discussions version of this thread, see: http://wowwiki.wikia.com/d/p/3100000000000000103
If so, how lucky you are. Please upload images of obviously new and cool stuff, if you can. Blizzard doesn't restrict this kind of thing (you can see WoW news sites are datamining like crazy).
For Discussions version of this thread: http://wowwiki.wikia.com/d/p/3100000000000000099
Unfortunately, I haven't had time to play much lately and keeping my many level 110 alts from not getting stale is a big time sink.
Any feedback about 7.3.5 while playing in below level 100 zones would be great to hear!
Personally, although I like the idea of level scaled zones, it really makes it look like Blizzard is trying to cash in on level boosts. It makes me repeat that they need to go to tiered pricing for new players. $15 a month is not worth it for a new player who doesn't want to boost. It needs to start lower.
What do you think?
If you want to comment in Discussions, go here: http://wowwiki.wikia.com/d/p/3100000000000000089
When I click on a message in a chat window, for example Guild chat, I would like my addon to receive notification of the message that was clicked on. The exact equivalent of ChatFrame_AddMessageEventFilter but received when the user clicks on a messaege, rather than when the message was received.
Hello, ivé been playing one faction for all my time in wow and it´s finally time to make the change.My question is, if i delete some of my characters, will their respective transmog gear dissapear or will they still exist in my wardrobe?
Hi. I need to know what's the meaning of "to shadow somebody" I don't know much of the game and the forum rules, so I apologize. Here is a text sample. Thank you.
Over the past couple of days, I've observed a blood elf woman travelling to and from the fel orc stronghold and conversing with the fel orc leader. From her body language, she's clearly issuing orders. But why? Whose orders is she conveying?
My curiosity got the better of my judgment and I shadowed her when she left the fel orc encampment. She headed north, to Firewing Point.
Hi all, im trying to find out if there is a progression video series for WoW. **Someone starts a new char, levels them up week by week while release videos. If anyone has watched Mr.mammls prog/video series, thats something im looking for WoW. thnks
Here it is if you would like to view it:
Hi guys. If I start to play Sporregar EU realm for example, which is connected to Ravenholdt, Defias Brotherhood , etc - will I see people from that realms on Broken Isles?
I know that cross realm zones are not working there, but what about connected realms?
Argus is pretty cool. Before recently, the PTR was pretty buggy, so it wasn't super fun, but that last build (24608) seems much more stable and has a large percentage of the patch working, supposedly. Check it out.
Also, if you have a rogue (I do, but my DH is better for survivability), try to get some screenshots of mobs close up.
I did a massive screenshot dump from the first fragment, Krokuun, but I need to get more stuff from the other fragments that just opened up.
Hi, the page for Muln Earthfury, leader of the Earthen Ring needs an update for the Legion Expansion. He appears in Deepholm aiding the shamans to gain aid of the Elementals against the Legon and he also becomes a follower in the Shaman Class Hall.
I just ran a random at lvl 20 with a warrior that had a Rare (Blue) Bind to Account sword that was item lvl 700. Is this something new or was it a hack? It had all Item lvl 700 stats to it at lvl 20?
I'm having a problem with my code. So far everything loads fine except the values I'm pushing. And only at the start. When I reload the ui, it inputs the proper values and I can continue on with my day. I end up with unitXp (at the start) and maxXp showing up as 0. And when I reload the ui, it's like, "oh yeah, shit. forgot these. here ya go", then it's all good. I'm no stranger to object oriented programming, however I've never used lua before. HELP APPRECIATED
local unitXp = UnitXP("player") -- Returns the number of experience points the specified unit has in their current level. (only works on your player) local maxXp = UnitXPMax("player") -- Returns the number of experience points the specified unit needs to reach their next level. (only works on your player) local restState = GetRestState() -- Returns information about a player's rest state (saved up experience bonus) local xpDisabled = IsXPUserDisabled() -- Returns 1 if the character has disabled experience gain. local petXp = GetPetExperience() -- Returns the pet's current xp, and total xp required for next level. local xpExhaustion = GetXPExhaustion() -- Returns your character's current rested XP, nil if character is not rested. local debugtrue = false local oldxp = 0 local pass1 = true print("======================================") print("LOADED INFORMATION") print("asdf:" .. unitXp) print("asdf:" .. maxXp) print("asdf:" .. petXp) print("asdf:" .. restState) print(xpDisabled) print(xpExhaustion) print("======================================") --sets the oldxp to current xp once at beginning of addon local function setXp() if pass1 then oldxp = unitXp pass1 = false print("if you see me more than once, we got problems") end end setXp() --returns the number of enemies to kill, of last kill, to gain new level local function killToLevel() if debugtrue then print(maxXp .. " maxxp") print(unitXp .. " unitXp") print(oldxp .. " oldxp") end local xpAmt = unitXp - oldxp if xpAmt > 1 then local killnum = (maxXp - unitXp)/(unitXp - oldxp) oldxp = unitXp return ceil(killnum) else return 0 end end local MyAddon = CreateFrame("frame","MyAddonFrame") MyAddon:SetBackdrop({ bgFile="Interface\\DialogFrame\\UI-DialogBox-Background", edgeFile="Interface\\DialogFrame\\UI-DialogBox-Border", tile=1, tileSize=32, edgeSize=32, insets={left=11, right=12, top=12, bottom=11} }) windowWidth = 300 windowHeight = 75 MyAddon:SetWidth(windowWidth) MyAddon:SetHeight(windowHeight) MyAddon:SetPoint("CENTER",UIParent) MyAddon:EnableMouse(true) MyAddon:SetMovable(true) MyAddon:RegisterForDrag("LeftButton") MyAddon:SetScript("OnDragStart", function(self) self:StartMoving() end) MyAddon:SetScript("OnDragStop", function(self) self:StopMovingOrSizing() end) MyAddon:SetFrameStrata("FULLSCREEN_DIALOG") local experienceA = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") local experience1 = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") local experienceB = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") local experience2 = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") local experienceC = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") local experience3 = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal") print(killnum) local function draw() if debugtrue then print("debugging") end experienceA:SetPoint("TOPLEFT", 15, -15) experienceA:SetFormattedText("Experience: ") experience1:SetPoint("TOPRIGHT", -15, -15) experience1:SetFormattedText(unitXp .. " / " .. maxXp) experienceB:SetPoint("TOPLEFT", 15, -30) experienceB:SetFormattedText("Extra rest XP: ") experience2:SetPoint("TOPRIGHT", -15, -30) experience2:SetFormattedText("None") if xpExhaustion then print("here 1") experience2:SetFormattedText(xpExhaustion) else<span class="Apple-tab-span" style="white-space:pre"> </span> print("here 2") experience2:SetFormattedText("None") end experienceC:SetPoint("TOPLEFT", 15, -45) if not restState then experienceC:SetFormattedText("You are rested.") else experienceC:SetFormattedText("You are not rested.") experience3:SetPoint("RIGHT", -15, -15) experience3:SetFormattedText(killToLevel()) end end draw() --updates variables when called local function updateVariables() if debugtrue then print("updatevariables function") end unitXp = UnitXP("player") maxXp = UnitXPMax("player") restState = GetRestState() xpDisabled = IsXPUserDisabled() petXp = GetPetExperience() xpExhaustion = GetXPExhaustion() draw() end updateVariables() --Updates frames when XP is gained local frame = CreateFrame("FRAME", "FooAddonFrame"); frame:RegisterEvent("PLAYER_XP_UPDATE"); local function eventHandler(self, event, ...) if debugtrue then print("eventHandler xp update function") end updateVariables() print(killnum .. ": after updateVariables") end frame:SetScript("OnEvent", eventHandler);