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

Plugin Not Pulsing

Stove

New Member
Joined
Apr 10, 2012
Messages
182
Reaction score
9
When my WD kills the Goblin in Ancient path, this piece of code is run:

Code:
                if (!IsGoblinNear())
                {
                    int lootsCountGobGone = Loots.Count();
                    state = State.Loot;
                    if (goblinHealthPercent <= 0.1 || lootsCountGobGone > lootsCountGobExcists)
                        GoblinKilled = true;
                }
which isn't really important for this issue - but only told to gain insight - but as it seems, the state should be changed to loot state. But as it is clear as of this log - attached - there is a 36 second break where the plugin does not pulse - end of the log. This only occurs for me on my WD. My 6 monks and 3 demon hunters run without this issue at all.

Is this a routine issue? A DB issue? Is it something i can prevent in my plugin?
View attachment WD pulse fail.txt
 
Last edited:
When my WD kills the Goblin in Ancient path, this piece of code is run:

Code:
                if (!IsGoblinNear())
                {
                    int lootsCountGobGone = Loots.Count();
                    state = State.Loot;
                    if (goblinHealthPercent <= 0.1 || lootsCountGobGone > lootsCountGobExcists)
                        GoblinKilled = true;
                }
which isn't really important for this issue - but only told to gain insight - but as it seems, the state should be changed to loot state. But as it is clear as of this log - attached - there is a 36 second break where the plugin does not pulse. This only occurs for me on my WD. My 6 monks and 3 demon hunters run without this issue at all.

Is this a routine issue? A DB issue? Is it something i can prevent in my plugin?
View attachment 51204
Do you use the pets? Because DB is trying to attack different WD pets atm, you could add the pet actors to giles monsterprio and they should be ignored!
 
Hmm, I'll check it again with that in mind.

Though I'm not using any pets :-/
 
Last edited:
Hmm, I'll check it again with that in mind.

Though I'm not using any pets :-/
It might not be the problem, but alot of people using WD has said that they have problem with pets!
 
Back
Top