Get revision
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