My turncount

From Kolmafia
Revision as of 08:22, 20 January 2007 by imported>Metraxis (New Page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

int my_turncount()

This function returns the total number of adventures used thus far by the logged-in character during the current ascension as an int. With the introduction of can_interact(), the use of this function to determine whether a softcore character is still in Ronin is no longer required, but it can still be used for logging.

An example:

int [ string ] Accomplishments;

if(adventure(1,$location[The Boss Bat's Lair]) {
  Accomplishments["Defeated Boss Bat"] = my_turncount();
}