Difference between revisions of "Miscellaneous Functions"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(Add chat functions. 'Bout time!)
imported>Bale
(re-organize)
Line 1: Line 1:
 +
{{TOCright}}
 +
== Chat Functions ==
 +
{{Flink|void|chat_clan|string}}
 +
{{Flink|void|chat_clan|string|string|desc=Sends a message to clan chat.}}
 +
{{Flink|void|chat_macro|string|desc=Submits a chat macro to KoL.}}
 +
{{Flink|void|chat_private|string|string|desc=Sends a private message to another player.}}
 +
{{Flink|boolean|is_online|string|desc=Check to see if a player is online.}}
 +
 +
== Time Functions ==
 +
{{Flink|int|gameday_to_int|desc=Returns the current KoL date as an integer.}}
 +
{{Flink|int|gameday_to_int|desc=Returns the current KoL date as a string.}}
 +
{{Flink|string|now_to_string|desc=Returns current local time/date in SimpleDateFormat format.}}
 +
{{Flink|string|time_to_string|desc=Returns the current local time in HH:mm:ss z format.}}
 +
{{Flink|string|today_to_string|desc=Returns the current local day in ISO format.}}
 +
 +
== Other Functions ==
 
{{Flink|void|abort|{{opt|string}}|desc=Aborts the current script with an optional message.}}
 
{{Flink|void|abort|{{opt|string}}|desc=Aborts the current script with an optional message.}}
 
{{Flink|void|print|string|{{opt|string}}|desc=Prints to CLI and status line of Adventuring window, optionally in a specified color.}}
 
{{Flink|void|print|string|{{opt|string}}|desc=Prints to CLI and status line of Adventuring window, optionally in a specified color.}}
Line 15: Line 31:
 
{{Flink|int|count|aggregate|desc=Returns the number of defined keys for the specified aggregate.}}
 
{{Flink|int|count|aggregate|desc=Returns the number of defined keys for the specified aggregate.}}
 
{{Flink|void|clear|aggregate|desc=Removes all keys from the specified aggregate.}}
 
{{Flink|void|clear|aggregate|desc=Removes all keys from the specified aggregate.}}
{{Flink|boolean|is_online|string|desc=Check to see if a player is online.}}
 
 
{{Flink|void|disable|string|desc=Disables the specified function (for debugging purposes).}}
 
{{Flink|void|disable|string|desc=Disables the specified function (for debugging purposes).}}
 
{{Flink|void|enable|string|desc=Enables the specified function (for debugging purposes).}}
 
{{Flink|void|enable|string|desc=Enables the specified function (for debugging purposes).}}
Line 21: Line 36:
 
{{Flink|int|get_revision|desc=Returns the current KoLmafia revision number.}}
 
{{Flink|int|get_revision|desc=Returns the current KoLmafia revision number.}}
 
{{Flink|string|get_version|desc=Returns the most recent KoLmafia version.}}
 
{{Flink|string|get_version|desc=Returns the most recent KoLmafia version.}}
{{Flink|void|chat_clan|string}}
+
 
{{Flink|void|chat_clan|string|string|desc=Sends a message to clan chat.}}
 
{{Flink|void|chat_macro|string|desc=Submits a chat macro to KoL.}}
 
{{Flink|void|chat_private|string|string|desc=Sends a private message to another player.}}
 
 
[[Category:Scripting]]
 
[[Category:Scripting]]

Revision as of 09:41, 26 January 2011

Chat Functions

void chat_clan( string )

void chat_clan( string, string )

Sends a message to clan chat.

void chat_macro( string )

Submits a chat macro to KoL.

void chat_private( string, string )

Sends a private message to another player.

boolean is_online( string )

Check to see if a player is online.


Time Functions

int gameday_to_int()

Returns the current KoL date as an integer.

int gameday_to_int()

Returns the current KoL date as a string.

string now_to_string()

Returns current local time/date in SimpleDateFormat format.

string time_to_string()

Returns the current local time in HH:mm:ss z format.

string today_to_string()

Returns the current local day in ISO format.


Other Functions

void abort( [string] )

Aborts the current script with an optional message.

void print( string, [string] )

Prints to CLI and status line of Adventuring window, optionally in a specified color.

void print_html( string )

Prints to CLI, parsing any included html.

void logprint( string )

Prints to the session log.

boolean cli_execute( string )

Executes the given command as if it were entered into the CLI.

void wait( int )

void waitq( int )

Sleeps for the specified number of seconds.

boolean user_confirm( string )

Allows user input in Y/N format.

string get_property( string )

Gets a global or user preference as appropriate.

void set_property( string, string )

Sets a global or user preference as appropriate.

void batch_open()

Used to mark the beginning of a block of functions to operate in batch mode (see page for batch_close() for details).

boolean batch_close()

Used to mark the end of a block of functions to operate in batch mode (see page for details).

boolean file_to_map( string, aggregate )

Loads a map from a tab-delimited text file.

boolean map_to_file( aggregate, string )

Saves a map to a tab-delimited text file.

int count( aggregate )

Returns the number of defined keys for the specified aggregate.

void clear( aggregate )

Removes all keys from the specified aggregate.

void disable( string )

Disables the specified function (for debugging purposes).

void enable( string )

Enables the specified function (for debugging purposes).

buffer load_html( string )

Works like visit_url(), but for debugging.

int get_revision()

Returns the current KoLmafia revision number.

string get_version()

Returns the most recent KoLmafia version.