Get revision

From Kolmafia
Revision as of 14:41, 29 July 2010 by imported>Heeheehee (You'd actually need to check this.)
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+1) ))
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()