Difference between revisions of "In-combat Consulting"

From Kolmafia
Jump to navigation Jump to search
(Removed Spam)
imported>Bale
Line 21: Line 21:
 
<strong>int monster_hp()</strong><br />
 
<strong>int monster_hp()</strong><br />
 
returns the (current?) attack, defense, and hp of the monster.</p>
 
returns the (current?) attack, defense, and hp of the monster.</p>
 +
<strong>string get_ccs_action( int round )</strong><br />
 +
Returns the specified line from the CCS section appropriate for the monster currently being fought. [http://kolmafia.us/showthread.php?p=9705#post9705]
  
 
<p><strong>boolean will_usually_miss()</strong><br />
 
<p><strong>boolean will_usually_miss()</strong><br />
 
<strong>boolean will_usually_dodge()</strong><br />
 
<strong>boolean will_usually_dodge()</strong><br />
 
returns if you will normally miss, or will usually be missed in battle.</p>
 
returns if you will normally miss, or will usually be missed in battle.</p>

Revision as of 08:32, 6 May 2009

Part 6 - In-combat functions for consulting scripting

These functions are for use when handling a battle in a script using your custom combat settings. There is very little documentation of how to do this, and for most people these functions are useless.

string attack()
string runaway()
string use_skill( skill touse )
string throw_item( item tothrow )
string throw_items( item tothrow1, item tothrow2 )
Returns a string containing the html response from sending the appropriate url request for the associated action while in battle.

boolean use_skill( int count, skill touse )
Will loop the specified number of times using the specified skill, never reconsulting the script until the loop is complete. This function is handled differently when not in battle.
See Skills and Effects


element monster_attack_element()
element monster_defense_element()
returns the element that the monster attacks with, or defends against accordingly.

int monster_attack()
int monster_defense()
int monster_hp()
returns the (current?) attack, defense, and hp of the monster.

string get_ccs_action( int round )
Returns the specified line from the CCS section appropriate for the monster currently being fought. [1]

boolean will_usually_miss()
boolean will_usually_dodge()
returns if you will normally miss, or will usually be missed in battle.