Get revision

From Kolmafia
Revision as of 04:42, 29 July 2010 by imported>Icon315 (Created page with '{{ #vardefine:name|get_revision}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function1={{Function| name={{#var:name}}| aggregate={{#var:aggregate}}| ret…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

int get_revision()

Returns the build of mafia you are currently using.

Code Sample

Will tell you when there is a new mafia build

int Build = get_revision();
string page = visit_url("http://builds.kolmafia.us/");
string current = substring ( page, index_of ( page , "(Built Once An Hour)" ) , index_of ( page , ".jar</a>" ) );
if (!contains_text( current , Build ))
print ("There is a new build. Go get it here http://builds.kolmafia.us/", "red");
else print ("There is not a newer build.", "blue");

See Also

get_version()