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

[StandAlone] Demonbuddy Modification Assistant

I just did here.

So far from what you've explained "framework error if i open the program"... if you can't even run\start the program yet then reading a manual on how it works won't help much.

Try install the prerequisites that I provided for you... then (when you can actually use\run the program) ask all the questions you want. One step at a time.

What you are trying to do now is (as an example)...
Play a music CD in a CD Player that has no cord to plug into the wall.

Just like the Demonbuddy Modification Assistant... it needs you to download and install the required files so it has the cord and the power it needs to run.
 
anyone can send me the modified weighting.cs + crusaderCombat.cs for reaper's wraps and darklight mod?

You deserve being slapped to death for that kind of spam, have you even looked in the Mods's SVN? HERE

Now use your brain to make it happen :)
 
anyone can send me the modified weighting.cs + crusaderCombat.cs for reaper's wraps and darklight mod?

Click the FILE\LINK in the last message I sent... it's there, all zipped into 1 file.

Disaster averted, carry on everyone ;)

M.
 
I cant run this it freezes when trying to patch the Modifications. black box pops up followed by a text box saying its showing me the error and nothing happens.
 
I cant run this it freezes when trying to patch the Modifications. black box pops up followed by a text box saying its showing me the error and nothing happens.

Right Clicked ran as Administrator. fixed everything. Great utility keep up the Great work. Especially the modifications.
 
Hey guys, got it installed and starting etc. Selected reaper's wraps mod, clicked apply, but doesn't seem to do anything. Something I'm missing?
 
THere is an issue with the darklight setup.

...Too many instances where it doesn't attack at all with your main DPS ability. So in short, you're left attacking T6 enemies with a wrath generator.

I prefer these modifications as they drastically improve my kill times:
PHP:
                // Fist of Heavens
                if (CanCastFistOfHeavens())
                {
                    return new TrinityPower(SNOPower.X1_Crusader_FistOfTheHeavens, 65f, TargetUtil.GetBestClusterUnit(8f).Position);
                }

CHANGE TO

                // Fist of Heavens
                if (CanCastFistOfHeavens())
                {
                    return new TrinityPower(SNOPower.X1_Crusader_FistOfTheHeavens, 14f, TargetUtil.GetBestClusterPoint());
                }
PHP:
        private static bool CanCastFistOfHeavens()
        {
            return CanCast(SNOPower.X1_Crusader_FistOfTheHeavens) &&
                (TargetUtil.ClusterExists(8f, 8f) || TargetUtil.EliteOrTrashInRange(8f) || Player.PrimaryResourcePct > 0.5);
        }

CHANGE TO

        private static bool CanCastFistOfHeavens()
        {
            return CanCast(SNOPower.X1_Crusader_FistOfTheHeavens) &&
                (TargetUtil.ClusterExists(8f, 8f) || TargetUtil.EliteOrTrashInRange(8f) || Player.PrimaryResourcePct > 0.5);
        }

After restarting the bot a couple hours ago, I am averaging 9 games per hour T6 rifts as opposed to 7 per hour with the default darklight mod.

Basically every time there is a single enemy it seems to ignore my other settings and tries to kill the single... with my wrath generator... And it takes 10+ seconds when it happens. Can someone else test this out and see if they can replicate my issues?
 
Last edited:
Back
Top