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

[WIP] Singular - A community driven All-In-One CC - It Just Plain Works

Status
Not open for further replies.
Hi Croga, this line should be fixed:
Code:
CreateSpellCast("Outbreak", ret=> !Me.CurrentTarget.HasAura("Frost Fever") && ret => !Me.CurrentTarget.HasAura("Blood Plague")),
Yeah, that's what I get for rushing out a last minute change without testing.... Thanks mate!
 

Attachments

the one that comes with HB by default is usually outdated within like 2-3 days. DL the SVN client and just patch that way... I used to update at least once a day... but been really busy lately.

Any idea what the link for the SVN Client i tried the link of the thread and it doesn't work which is probably 100% wrong but i don't see anything else?
 
Yes but you need a link to source the update from and i have no idea what it is i have the SVN Client i need the link for it to update from.
 
Rogue vanish needs some work. Just noticed that when health gets to a certain percent, Singular will cast Vanish and then instead of stopping to eat or replenish health, the rogue will go right back to attacking whatever it vanished from. Obviously this is not smart since the mob's health resets when it goes out of combat. So you just end up killing yourself.
 
[removed; outdated]
 
Last edited:
I've looked at the Balance Druid code and it can use a little work... Attached a very early preliminary version. It's not doing half of what I'd like it to do but it's already better then the original. I'll do some more work on it tomorrow.

What have you changed, apart from removing the config options from healing and starfall.
 
What have you changed, apart from removing the config options from healing and starfall.
I haven't removed anything, I've added self healing which wasn't in there and added moonkin form, which wasn't in there. I used the version that came with the latest HB as base.

[edit]It appears the version on SVN has been developed beyond the one that came with HB. Disregard my previous post, it's now outdated.
 
Last edited:
In PVP my arms warrior seems to have a lot of problems. He won't attack while chasing somebody. Even when he does catch them it seems like he is standing very far away. He will not use most of his attacks but continues to auto attack and cast shouts over and over. I'm wondering if it's because he is standing too far away? I have attached my most recent log file. Could one of you awesome warrior gurus look into this? Thanks tons for the great CC so far. I have zero problems in pve.
 

Attachments

Shadow Priest -- Rev #245
When Solo Questing it is casting Prayer of Mending , which is useless unless there is others for the spell to bounce off of... Also doing it at 95% health.. Then after it shields..

Suggestion, Just have it shield... :)

Just noticed it's not switching back to Shadow after it is casting Prayer of mending. :(
 
Last edited:
Yes but you need a link to source the update from and i have no idea what it is i have the SVN Client i need the link for it to update from.

It's easy to overlook as when people link it, it ends up not looking like a link since the board translates the URL to use the title of the page: Revision 245: /trunk/Singular

Code:
http://svn.apocdev.com/singular/trunk/Singular/
 
Apoc, could you add a viable dk pvp cc? The current cc's are working but not really good.

It should use Chains of Ice, Festering Strike etc.

In addition have a look in this thread. It's about a pvp movement enhancment.
http://www.thebuddyforum.com/honorbuddy-forum/24048-%5Bpvp%5D-movement-question.html#post264981

based on what StefanKFG said above i'll make it easier on you. In Mord's Cimmerian 2.2 DK CC there is coding that keeps the bot attacking while running by giving run a higher priority than attack or something like that. I believe the code snippet can be found starting on line 1243 in the Deathknight.cs file. I have not tested myself but lots of people have said that it works well for attacking while moving. Would be awesome if we can get something like that. Thanks for all the work Apoc and singular contributers!
 
I've got TortoiseSVN installed but for the life of me I cannot figure out how to download all the files from the repository. I've read the manual and simply cannot wrap my head around it.

Can anyone quickly walk me through how to download these files specifically?
 
I've got TortoiseSVN installed but for the life of me I cannot figure out how to download all the files from the repository. I've read the manual and simply cannot wrap my head around it.

Can anyone quickly walk me through how to download these files specifically?

install svn, then go into windows explorer, right-click anywhere in the window on rhs and left click svn checkout, fill in the info below

http://svn.apocdev.com/singular/trunk/Singular/

make a directory called singular on your c: drive.

the directory gets populated after you hit the button.

Instructions in first post are straightforward, even I followed them :)

G
 
Last edited:
based on what StefanKFG said above i'll make it easier on you. In Mord's Cimmerian 2.2 DK CC there is coding that keeps the bot attacking while running by giving run a higher priority than attack or something like that. I believe the code snippet can be found starting on line 1243 in the Deathknight.cs file. I have not tested myself but lots of people have said that it works well for attacking while moving. Would be awesome if we can get something like that. Thanks for all the work Apoc and singular contributers!

Yep at the start of 1243 it looks like there is something to it, not sure if it could be implemented into this code though. If it's possible that would be a huge improvment.
 
Warriors could use some tweaking arms and fury are both decent but with some updates they could be godly. disc priest is amazing :O
 
APOC! code for Flask of the North

Can this be added in :)

return new PrioritySelector(
new Decorator(
ret =>
SingularSettings.Instance.UseAlchemyFlaskoftheNorth && Me.GetSkill(SkillLine.Alchemy).CurrentValue >= 400 &&
!Me.HasAura("Enhanced Agility") && !Me.HasAura("Enhanced Intellect") && !Me.HasAura("Enhanced Strength"),
new PrioritySelector(
ctx => Me.CarriedItems.FirstOrDefault(i => i.Entry == 47499), // Flask of the North
new Decorator(
ret => ret != null,
new Sequence(
new Action(ret => Logger.Write(String.Format("Using {0}", ((WoWItem)ret).Name))),
new Action(ret => ((WoWItem)ret).UseContainerItem()),
new Action(ret => StyxWoW.SleepForLagDuration())))
))
);
 
Yep at the start of 1243 it looks like there is something to it, not sure if it could be implemented into this code though. If it's possible that would be a huge improvment.

I've got my fingers crossed!!! Waiting for Apoc or somebody to comment.
 
Warriors could use some tweaking arms and fury are both decent but with some updates they could be godly. disc priest is amazing :O

please be specific in suggesting the updates so one of our awesome warrior guru's can look into it!
 
Status
Not open for further replies.
Back
Top