• Visit Rebornbuddy
  • Dagradt's Guide to CC Writing

    Discussion in 'Honorbuddy Guides' started by Dagradt, Jun 24, 2012.

    1. weischbier

      weischbier Guest

      I just copy pasta, maybe i missed something
       
    2. Noelbuddy

      Noelbuddy Member

      Joined:
      Nov 6, 2011
      Messages:
      126
      Likes Received:
      0
      Trophy Points:
      16
      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
       
    3. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @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!
       
    4. timotyman

      timotyman Member

      Joined:
      Jan 15, 2010
      Messages:
      733
      Likes Received:
      8
      Trophy Points:
      18
      Is it weird that i think your voice is very, sensual?
       
    5. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @Timotyman,

      Umm... Thank you? My Girlfriend thinks so too, lol!
       
    6. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @Community,

      HAPPY 4TH of JULY!!!
       
    7. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @Community,

      Part 7 has been uploaded!
       
    8. georgewbw

      georgewbw New Member

      Joined:
      Apr 25, 2010
      Messages:
      5
      Likes Received:
      0
      Trophy Points:
      0
      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
       
    9. Mirabis

      Mirabis Community Developer

      Joined:
      Jun 14, 2010
      Messages:
      4,475
      Likes Received:
      86
      Trophy Points:
      48
      @ 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?
       
    10. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @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.
       
    11. Mirabis

      Mirabis Community Developer

      Joined:
      Jun 14, 2010
      Messages:
      4,475
      Likes Received:
      86
      Trophy Points:
      48
      Ah I understand now.
       
    12. weischbier

      weischbier Guest

      Still 2 videos to go? What ya doin'?
       
    13. tuanha

      tuanha Well-Known Member

      Joined:
      Nov 29, 2011
      Messages:
      6,998
      Likes Received:
      124
      Trophy Points:
      63
      Thank Dagradt's,

      It's really helpful.
       
    14. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      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: Jul 23, 2012
    15. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @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.
       
    16. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Yes, b/c they deserve to be ruthlessly obliterated as well. :p
       
    17. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @Ama,

      Lulz!
       
    18. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @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!
       
    19. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      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.
       
    20. Dagradt

      Dagradt Community Developer

      Joined:
      Jul 26, 2010
      Messages:
      1,423
      Likes Received:
      44
      Trophy Points:
      48
      @Ama,

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

    Share This Page