OK - I need some help with the MarsBrandMephisto script for D2jsp
Thanks in advance
-Din
OK - What I want to know is how i'd make it so that the bot casts Frozen Orb once, then uses static till mephisto is at 50%. Then the bot will cast Frozen Orb again then nova till hes dead.//ææææææææææææææææææææææææææææ
// Sorceress Variables
//ææææææææææææææææææææææææææææ
// Precastable defensive spells
//====================================================================
// esp=true/false Set to true for Energy Shield Precast
// asp=armour spell or "none" Set to desired Chilling/Shiver/Frozen Armor Precast, or "none" to disable
// tsp=true/false Set to true for Thunderstorm Precast
// RecastPrecasts=true Set to true to recast expired defensive spells in battle
var esp=false;
var asp="Frozen Armor";
var tsp=true;
var RecastPrecasts=true;
// Attack configuration
//====================================================================
// spelllist.push("spell1") First timed attack spell to be used
// spelllist.push("spell2") For each additional timed attack spell to be used, add a new line like the one
//
// You can use any number of timed spells. The script will alternate between them in the order that you listed
// them. No untimered spells are suppored because they mess up the dodging routine.
//
// maxattacks=xx This is the maximum number of attack sequences used to attack Mephisto
// If he is still alive after this many attacks, the game will abort
// AttackMinMana=x% Saves you from running out of mana.
var spelllist=new Array();
spelllist.push(FROZENORB);
//spelllist.push(FIREWALL);
//spelllist.push(HYDRA);
//spelllist.push(BLIZZARD);
//spelllist.push(METEOR);
var maxattacks=50;
var AttackMinMana=20;
// Static Field
//-------------------------------------------------------------
// UseStatic=true/false Set to false if you don't use static field
// MaxStatic=x This is the MAXIMUM number of times you want static field to be cast in a run
// StaticPercent=x% At this percent of life, stop casting static field on Mephisto
// StaticRange=x 0 = Range is calculated automatically based on your skill level.
// This has a slight error margin, which is normally ok.
// Not zero = specify a range manually
var UseStatic=true;
var MaxStatic=10;
var StaticPercent=50;
var StaticRange=0;
// var StaticRange=14;
// Untimed Attack
//-------------------------------------------------------------
// UseUntimed=true/false Use secondary attack (Nova or Telekineses) with attacking Mephisto
// UntimedList Secondary attack spells, pretty much any timed attack spell except lightning, chain lightning and inferno
// supported spells: NOVA, TELEKINESIS, FIREBALL, FIREBOLT, GLACIALSPIKE, ICEBLAST, ICEBOLT, CHARGEDBOLT and FROSTNOVA
var UseUntimed=true;
var UntimedList = new Array();
UntimedList.push(NOVA);
// UntimedList.push(TELEKINESIS);
// UntimedList.push(GLACIALSPIKE);
Thanks in advance
-Din