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

[Warlock CC] skiWarlock 5.0 -Ok, probably doesn't work right now-

Status
Not open for further replies.
Mine doesn't use Soul Harvest.
Can you add it, please?
Edit: And change the range to 40 yards?
 
Oh nevermind, I got it working now. But why have you not added "Soul Harvest" ? It's really important spell when grinding.. :P
 
It looks like that in this method private void PetAttack is something wrong,
as it loops in it and never comes back.
So you get that error, that your lock is never casting again.

I put there some return; into and now for me it works and fights its targets in IB :)
 
Last edited:
Well, ski, I'm not sure why all these people are having problems, as I'm not. Top DPS in instances, superb grinding while waiting for the queue, My warlock will be 80 very soon, thanks to you!
 
What part of "soul shard mechanics isn't added yet" is difficult to follow?
 
This is NOT ready for the general public unless the general public isn't retarded. If you know how to play a lock, know how to work with cc's, please try this and give me feedback.

Submit bug reports like so:

- Your Spec
- Your Level
- Your Log
- What happened
- The situation in which it happened (so I can recreate it)
- Any other details that you think may help me fix it

Any issues NOT submitted like this won't even be looked at by me.

Again, I'm not going to respond to any issues unless they are posted like the above.
 
It looks like that in this method private void PetAttack is something wrong,
as it loops in it and never comes back.
So you get that error, that your lock is never casting again.

I put there some return; into and now for me it works and fights its targets in IB :)

Give me your log.

Code:
		private void PetAttack(string logPrefix, WoWUnit mob, bool WaitForTargetMatch)
		{
			if (Settings.UsePetAttack && Me.GotAlivePet)
			{
				// Log
				slog(logPrefix + ": Pet Attack: " + mob.Name);
				// Pet attack, set raid icon
				if (Settings.UseRaidIcons)
				{
					Lua.DoString("PetAttack(); if (GetRaidTargetIndex('target') ~= 7) then SetRaidTarget('target', 7); end");
				}
				else
				{
					Lua.DoString("PetAttack()");
				}
				// Wait for HB to update
				if (WaitForTargetMatch)
				{
					while (Me.GotAlivePet && mob.IsAlive && Me.Pet.CurrentTargetGuid != mob.Guid && !Me.Dead)
					{
						Thread.Sleep(200);
					}
				}
			}
		}

There is no loop there, unless petattack is called with WaitForTargetMatch true (its not called with true anywhere, I was using it to test something else).
 
- Your Spec - Demo
- Your Level - 26
- Your Log - Not needed...
- What happened - Soul Harvest is not added in settings list. Bot is not using it... Also missing "Soul Burn" spell in combination with Searing Pain or Drain Life etc.
- The situation in which it happened (so I can recreate it) - All the time :P
- Any other details that you think may help me fix it - Love your CC :)
 
Mine doesn't use Soul Harvest.
Can you add it, please?
Edit: And change the range to 40 yards?

I will add a setting to allow you to configure your own range. I prefer 29 yards so that it doesn't get stuck trying to cast on a mob that is running away.
 
Small suggestion, not a bug :)

Would it be possible to make a setting for it to only AoE if there is more than XX Adds, so it doesnt spam SoC if there aint just 2 mobs etc

And maybe a priority system so that if it gets an instant Soulfire proc it would cast that instead of SoC if theres less than 3 adds (Or without the adds part)

So far though. loving the CC as usual
 
Last edited:
I will add a setting to allow you to configure your own range. I prefer 29 yards so that it doesn't get stuck trying to cast on a mob that is running away.

Soul Harvest heals you... what's up with range? :P
 
I also noticed that the bot keeps spamming Immolate on mobs that are immune to it.
 
Soul Harvest heals you... what's up with range? :P

You asked for a range increase to 40 yards. Soul Harvest has no range, so I assumed you wanted a range increase for all spells.
 
Ski, sorry, I ran into a problem. Here's my log. I can monitor the thread from my phone, but wont be at my botting computer for a while, it works GREAT in instances when I tried it, but when it started grinding, welll....View attachment 11281

Are you in a group while grinding? Can you give me the profile so I can recreate?

This is where its failing:

Code:
		private bool RAFLeaderTargetIsValid
		{
			get
			{
				// !RaFHelper.Leader.IsTargetingMyPartyMember && !RaFHelper.Leader.IsTargetingMyRaidMember && !RaFHelper.Leader.IsTargetingMeOrPet
				if (InRAF && RaFHelper.Leader.CurrentTargetGuid != 0 && RaFHelper.Leader.CurrentTarget.IsValid && RaFHelper.Leader.CurrentTarget.IsAlive && !RaFHelper.Leader.CurrentTarget.IsFriendly)
				{
					return true;
				}
				else
				{
					return false;
				}
			}
		}

I suspect you might be in a group where the leader is out of your range or disconnected or something.
 
Last edited:
I also noticed that the bot keeps spamming Immolate on mobs that are immune to it.

There is no way to check for mob immunities within HB yet, so I can't do anything about it.
 
Are you in a group while grinding? Can you give me the profile so I can recreate?

No group while grinding. I had it running instance buddy, but I cant monitor it so I turned it to grind only, went to Grizzly Hills (Cords 18,68 in Grizzly Hills) and using...View attachment Retsalk - Grizzly Hills.xml

if the above attachment don't work lol, it might not,

http://www.thebuddyforum.com/honorb...lks-grizzly-hills-wolves-n-stags-72-77-a.html

is where I got it, and I never messed with the profile, anything else you need?

EDIT: I seen your edit, but I wasn't in a group, I right clicked on my picture and 'leave group' (then verified) then I turned it from 'instance buddy' to 'grind bot' and let it fly.
 
Last edited:
There is no way to check for mob immunities within HB yet, so I can't do anything about it.

Ah ok :P

But can you make it so that the bot does not spamclick the wand auto-shoot button? :P
 
Status
Not open for further replies.
Back
Top