Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Class Mechanics » Paladins

Reply
 
LinkBack Thread Tools
Old 10/11/10, 3:14 PM   #481
Heppypoo
Von Kaiser
 
Heppypoo's Avatar
 
Human Paladin
 
Sargeras
Its becoming a task to weed though posts, to find a mod specific discussion.

Concerning CLCRET and the beta release today(monday- Oct 11th) is there a plan to implement the holy power bar back into the clcret interface before or on the day of patch 4.0.1?

Offline
Reply With Quote
Old 10/11/10, 5:42 PM   #482
burghy
Don Flamenco
 
Human Paladin
 
Ravencrest (EU)
I'll add the same code there was in alphas. Keep in mind though clcret will be just in "life support" mode. I'll try to keep it functional but that's about it.
Better try to get used with clcInfo.

Offline
Reply With Quote
Old 10/11/10, 8:21 PM   #483
Nairobi the Kenyan
Von Kaiser
 
Human Paladin
 
Spirestone
Originally Posted by burghy View Post
It's that csBoost parameter. For example, return IconRet1(0.5) means it shouldn't suggest a filler if cs has less than 0.5s left on cooldown.


It should work on both beta and ptr, tested it only on beta though.


return IconICD(72412, 60, 0, 1, 0.3) is what I use for Frostforged Champion (agi ring). Behavior for those values should be: hidden completely when ready to proc, fully visible while buff up, faded to 0.3 alpha while ICD goes down.
return IconICD(67708, 45, 0, 1, 0.3) for normal Death Verdict.
Rotation should work (at least 3.x one should be the same with clcret), which build was it and what kind of issues were there with the rotation?

Btw, a fast way to get the ID of the buff. While the buff is active on you, use: /dump UnitAura("player", buffName). Last value in the list (I think 11th) should be the ID.
For example, while DV buff is up, use: /dump UnitAura("player", "Paragon")
I'm happy to go look up the spellIDs for my specific trinkets, but I was wondering if you could elaborate on the syntax of the code?
return IconICD(spellid, cooldown, alpha when ready?, alpha when active?, alpha when on cooldown?)
What about procs like DBW? Can I assign all 3 procs (str, crit, haste) and their associated ids to ONE grid so I can track its overall ICD, etc?

Also - using omnicc or other cooldown monitors, does that automatically insert the timer on the icon in clcinfo like it did in clcret? If not, is there a way to do so? PTR is down so I cant go play with that atm to test.

Just trying to get ready for tomorrow!

Offline
Reply With Quote
Old 10/12/10, 3:20 AM   #484
burghy
Don Flamenco
 
Human Paladin
 
Ravencrest (EU)
Yes, that's the syntax (functions are documented here: https://sites.google.com/site/clcinf...icon-functions). No, it can't do that for DBW since it's quite a special case. I'll try to implement something for it but it's a bit hard since I don't have the trinket.
OmniCC works the same.

Later edit:
Added another function: IconMICD(icd, alpha1, alpha2, alpha3, ...) to handle items like DBW. Arguments are the same as IconICD with the exception that instead of having the id at the start you put a list of ids at the end.
No idea about the actual spell id generated by DBW, but the usage should be something like: return IconMICD(90, 0, 1, 0.3, 10010, 10011, 10012)
Should work in theory, can't test it properly since I don't have any item like that.

Last edited by burghy : 10/12/10 at 11:29 AM.

Offline
Reply With Quote
Old 10/12/10, 8:28 PM   #485
Heppypoo
Von Kaiser
 
Heppypoo's Avatar
 
Human Paladin
 
Sargeras
Cant seem to toggle the holy power bar on the new clcret, is there a way I can fix this?

Offline
Reply With Quote
Old 10/12/10, 8:40 PM   #486
Jasteus
Glass Joe
 
Draenei Paladin
 
Cenarion Circle
Hepp, are you running pitbull? If so, that's your issue, clcinfo and pitbull are not playing nice together, I have to turn one or the other off.

Also burghy can you add an opacity slider or option or something?

Last edited by Jasteus : 10/12/10 at 9:23 PM.

Offline
Reply With Quote
Old 10/12/10, 9:30 PM   #487
Nairobi the Kenyan
Von Kaiser
 
Human Paladin
 
Spirestone
Originally Posted by burghy View Post
Yes, that's the syntax (functions are documented here: https://sites.google.com/site/clcinf...icon-functions). No, it can't do that for DBW since it's quite a special case. I'll try to implement something for it but it's a bit hard since I don't have the trinket.
OmniCC works the same.

Later edit:
Added another function: IconMICD(icd, alpha1, alpha2, alpha3, ...) to handle items like DBW. Arguments are the same as IconICD with the exception that instead of having the id at the start you put a list of ids at the end.
No idea about the actual spell id generated by DBW, but the usage should be something like: return IconMICD(90, 0, 1, 0.3, 10010, 10011, 10012)
Should work in theory, can't test it properly since I don't have any item like that.
Works perfectly btw for the DBW except the ICD of 90 isnt accurate. I was also pretty sure it was 90 seconds, but its off by about 15-20 seconds (aka, says its ready for 15-20 seconds before proc'ing).

Anyone else have this problem?

Edit: working code for DBW (heroic)
return IconMICD(105, 0.8, 1, 0.3, 71559, 71560, 71561)

105 secs works instead of 90, for whatever reason.

For normal, the code would be diff spell IDs, but the rest is the same.

Last edited by Nairobi the Kenyan : 10/13/10 at 3:40 PM.

Offline
Reply With Quote
Old 10/12/10, 10:02 PM   #488
Valindorf
Glass Joe
 
Blood Elf Paladin
 
Muradin
CLCret

I have some questions about priorities I know the basics but when I am going to set them in CLCret I only get 5 choices. I don't get to choose DS or CS. Am I missing something or I am just crazy.

Offline
Reply With Quote
Old 10/12/10, 10:33 PM   #489
BAWGroup
Glass Joe
 
Blood Elf Paladin
 
Haomarush
Originally Posted by Valindorf View Post
I have some questions about priorities I know the basics but when I am going to set them in CLCret I only get 5 choices. I don't get to choose DS or CS. Am I missing something or I am just crazy.
It defaults Templar's Verdict and Crusader Strike. You only have to choose the priority of your other spells. Also you can set it to delay for Crusader Strike.

Offline
Reply With Quote
Old 10/12/10, 11:28 PM   #490
Heppypoo
Von Kaiser
 
Heppypoo's Avatar
 
Human Paladin
 
Sargeras
Originally Posted by Jasteus View Post
Hepp, are you running pitbull? If so, that's your issue, clcinfo and pitbull are not playing nice together, I have to turn one or the other off.

Also burghy can you add an opacity slider or option or something?
I am running Xperl. And yes, it shows up when I disable the Xperl mod.

Offline
Reply With Quote
Old 10/13/10, 3:45 AM   #491
burghy
Don Flamenco
 
Human Paladin
 
Ravencrest (EU)
I'll look into what can be done with the hp bar so it doesn't conflict with other mods when EU servers come up.

Later edit:
Made some changes with the beta client (so not tested on live).
Should work now with pitbull and xperl (and any addon that hides blizzard frames in theory). Please let me know if there are still issues and what addon might cause them.

Last edited by burghy : 10/13/10 at 6:14 AM.

Offline
Reply With Quote
Old 10/13/10, 9:57 AM   #492
Tharia
Piston Honda
 
Tharia's Avatar
 
Tauren Paladin
 
Mal'Ganis (EU)
Originally Posted by burghy View Post
I'll look into what can be done with the hp bar so it doesn't conflict with other mods when EU servers come up.

Later edit:
Made some changes with the beta client (so not tested on live).
Should work now with pitbull and xperl (and any addon that hides blizzard frames in theory). Please let me know if there are still issues and what addon might cause them.
ShadowedUF seems to break the Holy Power Bar too. I could only see and move the Holy Power Bar with sUF disabled.

/EDIT: making sUF not hide the player frame works too, but then you have two player frames, so no real solution.

Last edited by Tharia : 10/13/10 at 10:15 AM.

Offline
Reply With Quote
Old 10/13/10, 10:24 AM   #493
burghy
Don Flamenco
 
Human Paladin
 
Ravencrest (EU)
Does that happen with last beta (or newer version) too? Just tried with SUF and seems to work fine.

Offline
Reply With Quote
Old 10/13/10, 11:01 AM   #494
Kyrann
Glass Joe
 
Blood Elf Paladin
 
Perenolde (EU)
im using ClCret, but the SoV-Tracking doesn't work.

The icon isn't shown.

Offline
Reply With Quote
Old 10/13/10, 11:09 AM   #495
Spotnick
Von Kaiser
 
Pandaren Monk
 
Lightning's Blade
I love the new version, it's working very well (once I resetted my profile), but I do have a question. The default "profile" seems to completely ignore Zealotry, is that a bug?

The other question is I see there is now CLCInfo, should we move to that one instead of CLCRet ?!

Canada Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Class Mechanics » Paladins

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Cat DPS Rotation Kazanir Druids 1356 12/07/09 12:07 PM
Ret FCFS Rotation Helper Thaeryn User Interface and AddOns 0 04/10/09 12:18 AM
FCFS (Retribution) modeling script Left Paladins 25 03/21/09 10:06 AM
Designing a hunter shot-rotation helper addon Zeza Public Discussion 40 11/27/06 7:52 PM