Jump to content

About This File

Free C# fight class for Vanilla Aff / Demonology Warlock's.  Built towards working with my vanilla levelling profiles

 

The idea behind this was to make a FC's that will go 1-60 where you dont need to populate the action bars with spells after training.

This FC is about when you would expect from a levelling lock FC.

Works best with instant cast corruption + improved voidwalker torment.  Once you have the Voidwalker spell at lvl 10- you NEED a wand.

Upon targeting an NPC it will send the pet in.  The rotation will keep immolate / Curse of Agony / Coruption on the target.  If you have Siphon life it will swap out immolate for that spell.

Stack a bot with high stam / spirit and a wand- should be good to go.

Should use unending breath when swimming

Will attempt to keep a healthstone in your bags + use if in combat at 50% health.

Will also use all consumable scrolls!  Stamina, spirit and intellect will be cast on you, armour, strength and agility will get send to the pet.

If you have any suggestions / bugs / recommendations drop me a PM and i can look into it.


What's New in Version 1.5   See changelog

Released

1.1.0

Changed wanding behaviour and some lower level skills.

Pet will now attack before you do.  no longer waits for you to engage.

1.2.0

Removed some isspell usable and changed pet attack

1.2.1

Added underwater breathing

1.3

Added health stone support

Fixed some "wait While channelling" logic which should stop drain life / soul thrashing

Added scroll useage.  Will buff you / pet if you have a scroll in your inventory.

Added fear

1.4

Added sacrifice

Added shadowburn

Fixed healthstone Item ID's

1.5

Fixed healthstone ID's (again)

Added back in show trance proc

played around with wanding- changed situational wanding,

Fixed health funnel glitch


User Feedback

Recommended Comments



Nosferatuepic

Posted

Can you add shadow bolt in rotation pls? after dots. wand is bad

OliZ

Posted

Hi!

 

everything is working well for me but the healthstone... he is not using it! He creates it but does not use it. ?

eeny

Posted

  On 8/29/2018 at 5:32 AM, Nosferatuepic said:

Can i use more life tap incombat ?

Expand  

The C# source is there- modify as you see fit.

eeny

Posted

  On 8/29/2018 at 7:10 AM, OliZ said:

Hi!

 

everything is working well for me but the healthstone... he is not using it! He creates it but does not use it. ?

Expand  

I swear the ID's of healthstone change with server, i have had to fix this so many times...  mind giving me the ItemID so i can add it.

Wrobot client > Tools >Development tools > Bag items.  Can you give the name + the ID.

OliZ

Posted

  On 8/29/2018 at 6:43 PM, eeny said:

I swear the ID's of healthstone change with server, i have had to fix this so many times...  mind giving me the ItemID so i can add it.

Wrobot client > Tools >Development tools > Bag items.  Can you give the name + the ID.

Expand  

Sure, here it is:

 

Minor Healthstone  (ID= 5512 )

eeny

Posted

  On 8/29/2018 at 6:59 PM, OliZ said:

Sure, here it is:

 

Minor Healthstone  (ID= 5512 )

Expand  

uploaded new version, you will need to re-download.  Let me know how it goes / any other ranks of healthstone that dont work

zergling212

Posted

There is a pretty bug where if the voidwalker dies, it pauses. It tries to maybe summon him once. If that fails or in combat, it pauses.

Nosferatuepic

Posted

  On 8/31/2018 at 2:30 AM, zergling212 said:

There is a pretty bug where if the voidwalker dies, it pauses. It tries to maybe summon him once. If that fails or in combat, it pauses.

Expand  

how i can fix that?

eeny

Posted

  On 8/31/2018 at 2:30 AM, zergling212 said:

There is a pretty bug where if the voidwalker dies, it pauses. It tries to maybe summon him once. If that fails or in combat, it pauses.

Expand  

FNV mentioned that and I removed the pause code a few days ago. Still happening on the new version,? 

Nosferatuepic

Posted

  On 8/31/2018 at 4:02 AM, eeny said:

FNV mentioned that and I removed the pause code a few days ago. Still happening on the new version,? 

Expand  

yes

eeny

Posted

  On 8/31/2018 at 4:09 AM, Nosferatuepic said:

yes

Expand  

lol it was updated  < 3 days ago- your last DL was 4 days ago. So its super unlikely your using the latest version.

Also if you have a problem with a free fight class- a bit of description of whats going on helps.  A little effort on your part goes a long way.  
 

I have got to the point of ignoring " broken plz fix ASAP" comments.

Nosferatuepic

Posted

  On 8/31/2018 at 4:19 AM, eeny said:

lol it was updated  < 3 days ago- your last DL was 4 days ago. So its super unlikely your using the latest version.

Also if you have a problem with a free fight class- a bit of description of whats going on helps.  A little effort on your part goes a long way.  
 

I have got to the point of ignoring " broken plz fix ASAP" comments.

Expand  

release good paid profile for lock and i buy it

Nosferatuepic

Posted

At new version bot just use script pet attack and stay afk wanna autoattack with dagger (have wand) Vs mechancal units

food4me

Posted

Casts immolate then stands there... If I'm lucky it will auto attack never uses shadow bolt dies 100% of the time with more than one mob on me. Doesn't summon imp either.

Razzorwind

Posted

Hi, the profil spammes drain sould at every mob with lower life so my inventory is very fast full with soul shards, can i do anything to limit this ? and it doesnt use the wand even if its in action bar

eeny

Posted

  On 9/16/2018 at 2:24 PM, Razzorwind said:

Hi, the profil spammes drain sould at every mob with lower life so my inventory is very fast full with soul shards, can i do anything to limit this ? and it doesnt use the wand even if its in action bar

Expand  

      This is the code for drain soul, it should be stopping after 4 shards- by chance are you using a non enligsh client?  as for wand got a log file from the session- usually its when the bot hits a logic error on the mob and is trying to cast a spell it cant yet and studders.

  if (DrainSoul.KnownSpell && ObjectManager.Target.GetDistance < 25 && ObjectManager.Target.HealthPercent <= 15 && ItemsManager.GetItemCountByNameLUA("Soul Shard") <= 3 )
        {
            DrainSoul.Launch();
            Thread.Sleep(Usefuls.Latency);
            Usefuls.WaitIsCasting();
        }

Ocelot

Posted

Just updated to the newest version and when it uses the healthstone it tries to create one. Moves forward a bit which interrupts the spell and tries it again. Rinse and repeat. Is there anyway to have the bot pause, create the healthstone and then move on?

eeny

Posted

  On 9/28/2018 at 4:34 AM, Ocelot said:

Just updated to the newest version and when it uses the healthstone it tries to create one. Moves forward a bit which interrupts the spell and tries it again. Rinse and repeat. Is there anyway to have the bot pause, create the healthstone and then move on?

Expand  

I'm away for the weekend so I can't check if I wrote wait for casting on healstone, you could try increment your latency so get the bot to stand long enough to get a cast off

Jensen-

Posted

after few mins of start im geting pause on wrobot

eeny

Posted

  On 10/5/2018 at 10:48 AM, Jensen- said:

after few mins of start im geting pause on wrobot

Expand  

New version?  i removed all puases in the one up there now

 

Jensen-

Posted

  On 10/5/2018 at 11:00 AM, eeny said:

New version?  i removed all puases in the one up there now

 

Expand  

thanks working now was using the old version


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...