whatisgoingon
Player-
Content count
123 -
Joined
-
Last visited
Everything posted by whatisgoingon
-
Honor info on the web shows certain rank associated with certain amount of gained honor, is that a fixed value? for example 5k to be rank 3. being a lvl 19 twink not having any rank yet but 5k+ honor already, i can then savely go up one bracket and get rank 3 guaranteed the next week when ranks update?
-
Question regarding gaining ranks
whatisgoingon replied to whatisgoingon's topic in General Discussion & Suggestions
is there an updated leaderboard/ladder? -
Seal of Wrynn vs. Seal of Sylvanas - a joke?
whatisgoingon replied to whatisgoingon's topic in General Discussion & Suggestions
blablabla, fix the items. -
Joining each battleground, in WSG - it lags. Fps are shown as normal, but that is only a visual. There is a noticable delay on each ability you use. You cant hit players and players often have times hitting you. That means there is a greater lag going on. Can you look into this? I cant imagine this to be only the 19 bracket of WSG - but it really is not enjoyable. Openworld is totally fine, but not in battlegrounds
-
Question: Why do you invest time and effort into a game that can be shut down any moment?
whatisgoingon posted a topic in General Discussion & Suggestions
And all the effort and all the time spend of your daily life is *pouf* gone. Why do you do this? Aren't the rollbacks a sign enough? I suggest caring less or stop caring at all for private vanilla servers at this point until there is an official launch. PS: Or you like pain and live a miserable life -
Aren't you involved in selling the gold you can generate? There you have your funds. If not, again, there you have your funds. Or do you honestly believe, Blizzard doesnt make use of the gold any GM whatsoever can generate, and a player needs and buys with RL money? Of course inbefore ban for saying the truth
-
How is this WSG "exploit" being done? Walk through the thorn fence @alliance base
whatisgoingon replied to whatisgoingon's topic in General Discussion & Suggestions
female UD went through -
Dmg numbers red? What does it mean? (pic)
whatisgoingon posted a topic in General Discussion & Suggestions
what does it mean when the dmg-numbers under "Melee Attack" and "Power" is colored as red? weapons are ofc 100% repaired Edit: Nvm alraedy solved, bug, relog and gone (just a visual) -
Prefering a max spirit- or a mp5-set to regen mana fast at lvl 60?
whatisgoingon posted a topic in Priest
Title, what is your experience so far? (remember please no intellectual knowledge :) what you have practically applied and works or found not to be working) Thank you -
i had it proc once when a druid opened on me and i wasnt caring for answering his gank and just let my toon die. But on the last hit with a few % left I just had the intention to turn it around and wasted him. there can be such cool moments yes
-
you will never run around in pvp having a mathematical mindset knowing when this will proc. the proc chance is miniscule, it is fun and op af when it is there, but you dont and never rely on it. i have both and i also play with +15% chance to freeze on chill because i find the rng to be godly, but thats another thing. the +spell dmg would be the go to why you would want these rings. then again, you can play frost naked. one would probably contemplate if it would be of greater worth to invest ones energy in perfecting how one plays the class (pvp) instead of accumulating money, gold and therefore +dmg and hoping that does the job. not in vanilla. you can play rogues naked, you can play frostmage naked and that should tell a lot.
-
I've now tested wand and it doesnt seem to be really that great. The stationary factor isnt viable. Sure you can pump down some 170 crits with berserk, but that tickles another well geared class, like a warrior. I would go into healing and lateron switch to spriest. I cant imagine spriest to be viable at that lvl, the dmg is nothing. Blackout procs are really nice, definitely take it
-
What talents are you guys rolling with? 5/5 wand, 2/2 healing focus, 2/2 Martyrdom 1/x whatever 5/5 wand, 5/5 blackout 5/5 wand, 5/5 unbreakable will? Gonna play around if wand can be dropped, needs testing. Leave your feedback PS: Here is my BiS gear
-
What do you prefer at lvl 60 for best mana regen? Max spirit- or a mp5-set?
whatisgoingon posted a topic in Druid
Title, what is your experience so far? (remember please no intellectual knowledge :) what you have practically applied and works or found not to be working) Thank you -
Title, what is your experience so far? (remember please no intellectual knowledge :) what you have practically applied and works or found not to be working) Thank you
-
How to simply use an item with a script, in a macro? not from inventory slot, from name
whatisgoingon posted a topic in UI, AddOns & Macros
Just like /script if IsControlKeyDown() then CastSpellByName("Flamestrike(Rank 6)") else CastSpellByName("Arcane Explosion(Rank 6)")end but not for spells, for.. food in this case do you know how i can get this to work with items? what terms do you use instead of CastSpellByName? ..UseItemByName or something similar? -
"Key-down" / castmodifier script macro - why this error, whats not working?
whatisgoingon posted a topic in UI, AddOns & Macros
/script if (IsCtrlKeyDown())then CastSpellByName("Arcane Explosion") else CastSpellByName("Frost Nova");end I found this as an alternative for so called castmodifier macros (in retail wow mod:shift etc) it gives me the red error ingame: [string "if (IsCtrlKeyDown())then CastSpellByName("A..]:1: attempt to call global `IsCtrlKeyDown´ (a nil value) what does this mean and where is the error and how to make this work? -
"Key-down" / castmodifier script macro - why this error, whats not working?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
love you, works! appreciate the feedback on the PM regarding items and truly all macro questions have been answered. -
"Key-down" / castmodifier script macro - why this error, whats not working?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
btw how do you do this for 3 or more in 1 macro? shift, ctrl and none /script if IsShiftKeyDown() then CastSpellByName("Flamestrike(Rank 6)") if IsControlKeyDown() then CastSpellByName("Arcane Explosion(Rank 1)") else CastSpellByName("Arcane Explosion(Rank 6)")end doesnt seem to be working - bold (if statement) reason? -
What type of /cancelaura (cancel buff) script does work in this current WoW version, not having to requiring the use of Supermacro? What working script is there? for mage's "Slow Fall for" example What already inbuilt API function does Supermacro's /unbuff call?
-
Cancelaura script without Supermacro?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
/script CastSpellByName("Slow Fall") /script local i=0 g=GetPlayerBuff while not(g(i) == -1)do if(strfind(GetPlayerBuffTexture(g(i)), "Spell_Magic_FeatherFall"))then CancelPlayerBuff(g(i))end i=i+1 end works, awesome! anything unnecessary in it? -
Cancelaura script without Supermacro?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
incredible that this takes so much writing. thanks to the both of you, i'll check it out Edit and the first one works. How would this look like to put /cast slow fall into the macro then? one click applying, one click removing -
"Key-down" / castmodifier script macro - why this error, whats not working?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
very nice, but I cant find any UseItemByName in there there is the way to use inventory slots. What way is there to use a specific item directly, regardless where it is placed in the inventory (by name)? -
How to simply use an item with a script, in a macro? not from inventory slot, from name
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
i have castmodifiers but how does this help me writing a script? i need to know what to put into it supermacro gave me too much trouble. i thank you for circumnavigating my question and desire to such a tool, but i really want it as a clean and addon-free macro. since it works, as you see above, with this script, for spells, without an addon. what way is there to write it as a script? -
"Key-down" / castmodifier script macro - why this error, whats not working?
whatisgoingon replied to whatisgoingon's topic in UI, AddOns & Macros
yes, found it working like so: /script if IsControlKeyDown() then CastSpellByName("Flamestrike(Rank 6)") else CastSpellByName("Arcane Explosion(Rank 6)")end do you know how i can get this to work with items, such as food? what terms do you use instead of CastSpellByName? ..UseItemByName or something similar?
