Jump to content

whatisgoingon

Player
  • Content count

    123
  • Joined

  • Last visited

Everything posted by whatisgoingon

  1. 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?
  2. whatisgoingon

    Question regarding gaining ranks

    is there an updated leaderboard/ladder?
  3. whatisgoingon

    Seal of Wrynn vs. Seal of Sylvanas - a joke?

    blablabla, fix the items.
  4. 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
  5. 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
  6. whatisgoingon

    Hardware, servers, and funds

    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
  7. 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)
  8. 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
  9. whatisgoingon

    2x Freezing Band

    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
  10. whatisgoingon

    2x Freezing Band

    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.
  11. whatisgoingon

    Lvl 19 Priest Twink Guide Request

    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
  12. whatisgoingon

    Lvl 19 Priest Twink Guide Request

    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
  13. 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
  14. 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
  15. 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?
  16. /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?
  17. love you, works! appreciate the feedback on the PM regarding items and truly all macro questions have been answered.
  18. 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?
  19. 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?
  20. whatisgoingon

    Cancelaura script without Supermacro?

    /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?
  21. whatisgoingon

    Cancelaura script without Supermacro?

    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
  22. 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)?
  23. 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?
  24. 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?
×