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

Bot not using Glacial Cascade at all

TzmFen

New Member
Joined
Jun 11, 2012
Messages
67
Reaction score
0
So as title suggests.. i am trying to go on a cold witch with glacial cascade spell and when i got glacial cascade slotted it just does nothing.. when mobs are near.. just afk's and doesnt use the skill.. it does use Glacial cascade spell if i set it to break chess but nothing else..

attaching a log once i get one
 
You are using Release, you gotta code the skill in the Routine.
 
To add a skill:

1. Open up the file "Routines\Exile\Exile.cs" in a text editor.
2. CTRL + F for "RegisterMainAbilities" and scroll down some, you'll see a whole bunch of skill names in a function call to Register.
3. Add in the line: Register("Glacial Cascade"); between one of the lines that matches the priority you want it.

For example, let's say your main skill is glacial cascade and you're not using any other skills besides Vaal skills, you can add that line under the Register("Vaal Reave"); and the bot will use that skill all the time as it's first choice. If you use other skills, you'd place it in an order that made sense for your build.
 
To add a skill:

1. Open up the file "Routines\Exile\Exile.cs" in a text editor.
2. CTRL + F for "RegisterMainAbilities" and scroll down some, you'll see a whole bunch of skill names in a function call to Register.
3. Add in the line: Register("Glacial Cascade"); between one of the lines that matches the priority you want it.

For example, let's say your main skill is glacial cascade and you're not using any other skills besides Vaal skills, you can add that line under the Register("Vaal Reave"); and the bot will use that skill all the time as it's first choice. If you use other skills, you'd place it in an order that made sense for your build.

Thank you very much.. knowing that in future when the bot doesnt support some skill i want to use.. big thanks!
 
That is the point. It supports all the skills in the game. But some not out of the box, with a single line you can get it to work. Some examples are in the forums or you can find in the Routine file, a bit of searching might have helped a bit (like adding conditions on when to cast a certain skill).
 
Last edited:
Yeah but frankly just need it to spam a skill if you farm something like (ledge) to speed level.. and fast outleveled the zone.. and glacial cascade is just best to lvl with for cold snap :-) so aslong as its using it its good.. due it being so powerful skill..
 
Having seen how Exile worked, then seeing how the new ExilebuddyRoutine worked in Beta, I think for the next CR, it's just going to build around using whatever skills are on your skill bar. No more coding the skill names or trying to select the right skill via a GUI, just a simple system of, use skill in slot X under these conditions. Hopefully that gives some defaults that are a lot easier to work with, and avoid some of the issues that the ExilebuddyRoutine had in Beta.

As for Glacial Cascade, it's an amazing skill. I plan to build a new character around it, and would make a very specialized CR for caster Witches when I get the chance after all the 1.2 stuff is done.
 
Back
Top