Hmm no update yet ?:P
Hmm no update yet ?:P
I pmd Js1974 so he will hopefully upload his version. If it doesn't work for you guys then I will make the update
You can not change the language on the EU with RU and playing RU realms. Therefore the question. How to solve this problem? help please.
Well as stated in the main post the profile is made for the english version only. If you want it to work on a russian client, you will have to change the pieces of code where a name (not spell ID) is used to the russian name eg. CastSpell("Jab") into CastSpell("jab in russian"). I am ot sure how many of these I have in my profile, but I remember I used quite a couple mainly for range checks.
Cheers
So I added Ring of Piece and I moved Focus paralysis to middle mouse button and auto cooldown toggle to mouse 4.
If you don't have a mouse 4 or don't want to use those it's very easy to change.
Left control will use any T60 talent, Right alt will use any T75 talent.
https://www.dropbox.com/sh/elc994t6291zjxq/1CPPqpu1Ep
Thanks js1974 for uploading your version!
MY UPDATE
- changed Chi Wave since it no longer requires Chi
- changed Touch of Karma, same reason
- added Ring of Peace (manual usage only, at least for now)
- added keybind options under >> User Settings <<
From what I am aware of there were no other ground-breaking changes to WW so I don't see a reason why the profile wouldn't work. But please test it out! Turn on Display LUA errors in Interface-> Help
DOWNLOAD
Code:Message: [string "if PQR_Addon_Loaded == nil then..."]:765: attempt to call field '?' (a nil value) Time: 03/27/13 18:58:02 Count: 1658 Stack: [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility' [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation' [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214> Locals: rotationNumber = 0 nextAbility = -1 playerChanneling = false (for index) = 6 (for limit) = 1023 (for step) = 1 i = 6 spellID = 0 skipUnknown = true (*temporary) = nil (*temporary) = "attempt to call field '?' (a nil value)"
Yep missed an end. Please trying adding another end at the bottom of the 'Ring of Peace derp' ability in ability editor and see if that fixes it.
Cheers!
Thank you very much for your reply.
if PlayerEnergy >= 40
and PlayerChi < 4
and IsSpellInRange("Jab", "target") == 1 then
If I understand the needs Swap like this?
if PlayerEnergy >= 40
and PlayerChi < 4
and IsSpellInRange("Дзуки", "target") == 1 then
And just to correct all code?
hmm ok the error is gone but its work without targeting any thing when i get a player or any thing else not workCode:if RoP == nil then return false end if Pause then return false end if RoP and PQR_SpellAvailable(116844) == true then if UnitExists("target") and IsSpellInRange("Ring of Peace", "target") == 1 then CastSpellByID(116844, "target") end if not UnitExists("target") then CastSpellByID(116844, "player") end end![]()
Last edited by ginuwine12; 03-28-2013 at 12:21 AM.