Difference between revisions of "Total turns played"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(r13996)
 
imported>Bobson
(Fixing the example)
 
(One intermediate revision by one other user not shown)
Line 17: Line 17:
 
code1={{CodeSample|
 
code1={{CodeSample|
 
title=Code Sample|
 
title=Code Sample|
description=Turns until a Light's Out adventure in Spookyraven is based on total turns played.|
+
description=Turns until a "Lights Out" adventure in Spookyraven is based on total turns played.|
 
code=
 
code=
 
<syntaxhighlight>
 
<syntaxhighlight>
print( "Number of turns to next 'Lights Out' adventure: " + ( total_turns_played() % 37 ) );
+
print( "Number of turns to next 'Lights Out' adventure: " + (37 - total_turns_played() % 37 ) );
 
</syntaxhighlight>
 
</syntaxhighlight>
 
}}|
 
}}|

Latest revision as of 12:38, 26 December 2014

Function Syntax

int total_turns_played()

This function returns the total number of adventures used by the logged-in character since they were created.

Code Sample

Turns until a "Lights Out" adventure in Spookyraven is based on total turns played.

print( "Number of turns to next 'Lights Out' adventure: " + (37 - total_turns_played() % 37 ) );

See Also

my_turncount() | my_daycount()

Special

When not logged in, this function returns 0.