What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Dagradt's Guide to CC Writing

@Weischbier,

I tried that and it gives me an error, but if I swap it around it works... I'll recheck to see if I copied it wrong or if I am missing a Syntax..

I just copy pasta, maybe i missed something
 
Dagradt, I just want to say thank you for giving a lot of time to help people like me to teach us about writing cc.I hope your work will be the push that I need to start to try writing or at least tweak cc to my needs
 
@Community,

School started again and the 4th weekend is here so I will be getting hammered... Once the hangovers settle down I will get the last of the videos posted!
 
@Timotyman,

Umm... Thank you? My Girlfriend thinks so too, lol!
 
Dagradt thank you for helping out with my CC development - I can't really be arsed to learn an entire API for a game while I'm working on my own projects for school. I'm hoping to get something done by tomorrow night courtesy of you (; +rep
 
@ Video 2:
This part in the video:
Code:
  public bool isTargetHealer()            {
            if (((StyxWoW.Me.CurrentTarget.Class == WowClass.Druid && !StyxWoW.Me.CurrentTarget.Auras.ContainsKey("Moonkin Form")) ||
                StyxWoW.Me.CurrentTarget.Class == WoWClass.Paladin || (StyxWoW.Me.CurrentTarget == WoWClass.Priest &&
                !StyxWoW.Me.CurrentTarget.Auras.ContainsKey("Shadowform"))) &&  StyxWoW.Me.CurrentTarget.MaxMana >= 100000)
                return true;
            return false;

Ur just assuming ALL Paladins are healers, or All paladins with more then 100000 mana?
 
@Mirabis,

Check 1) StyxWoW.Me.CurrentTarget.Class == WoWClass.Paladin
Check 2)
StyxWoW.Me.CurrentTarget.MaxMana >= 100000

In other words: If my current target is a paladin and has 100K mana or more... He is most-likely a healer.
 
@Mirabis,

Check 1) StyxWoW.Me.CurrentTarget.Class == WoWClass.Paladin
Check 2)
StyxWoW.Me.CurrentTarget.MaxMana >= 100000

In other words: If my current target is a paladin and has 100K mana or more... He is most-likely a healer.

Ah I understand now.
 
Ah I understand now.

A better check would be to check for a spell only a holy paladin has. Checking for 100k mana may not work if you have an low ilvl. What if you have 99k mana... are you still a healer?

EDIT: NM. I didnt see the previous question. Since you have no access to the targets spells, you cannot check for them. 100k is a sort of high number that assumes your target is geared. I would check to see what the the mana of a geared ret and prot paladin is and use a number slightly higher. It will be way less than 100k.
 
Last edited:
@Ama,

At the time I wrote it I was more so thinking of Full Cata or Ruthless arena teams, but I understand your point. I'll check into my other sets and change the call to a more reasonable amount for lowbies.
 
@Ama,

At the time I wrote it I was more so thinking of Full Cata or Ruthless arena teams, but I understand your point. I'll check into my other sets and change the call to a more reasonable amount for lowbies.

Yes, b/c they deserve to be ruthlessly obliterated as well. :p
 
@Community,

I am attempting to learn the BT method and create a guide for it. As classes and job hunting (I need to keep my electicity on!!!) take up most of my time I am slow to release anything new or finish this guide. Please be patient!
 
@Community,

I am attempting to learn the BT method and create a guide for it. As classes and job hunting (I need to keep my electicity on!!!) take up most of my time I am slow to release anything new or finish this guide. Please be patient!

Make sure you read the wiki. I tried to figure it out by just looking at BT CCs, which sorta worked. I didn't really get a good understanding until I read through the wiki.
 
@Ama,

I have, but it's still a bit fuzzy in my mind...
 
Back
Top