Difference between revisions of "Boolean modifier"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(add word)
imported>Bale
(I'm a typo disaster some days.)
Line 37: Line 37:
 
   print("Either you won't be able to breathe, or your familiar won't.","red");
 
   print("Either you won't be able to breathe, or your familiar won't.","red");
 
   exit;
 
   exit;
  }
 
 
}
 
}
 
print("You can adventure underwater.")
 
print("You can adventure underwater.")
 
</syntaxhighlight>}}
 
</syntaxhighlight>}}
 
{{CodeSample|
 
{{CodeSample|
description=Informs the player of how many accordian thief songs can you have active at one time.|
+
description=Informs the player of how many accordion thief songs he can have active at one time.|
 
code=
 
code=
 
<syntaxhighlight>
 
<syntaxhighlight>
 
boolean four_songs = boolean_modifier("four songs");
 
boolean four_songs = boolean_modifier("four songs");
   # Is there four song gear?
+
   # plexiglass pendant and/or brimstone beret grant 4 songs total.
 
boolean extra_song = boolean_modifier("additional song");
 
boolean extra_song = boolean_modifier("additional song");
 
   # La Hebilla del Cinturón de Lopez adds one song
 
   # La Hebilla del Cinturón de Lopez adds one song

Revision as of 03:27, 27 May 2010

Function Syntax

boolean boolean_modifier(string str )

int boolean_modifier(item it ,string str )

  • it is the (optional) item in question
  • str is the modifier name

Accesses fields of your current modifiers for all of your current equipment and effects. This is the same mechanism that lets mafia decide whether you can adventure underwater, or how many songs you can keep in your head.

For a list of fields that this function takes, see Modifiers.

Simple Examples

Tells you if you can adventure underwater or not.

if(!(boolean_modifier("Adventure Underwater"))||!(boolean_modifier("Underwater Familiar"))) {
   print("You can't adventure underwater.", "red");
   print("Either you won't be able to breathe, or your familiar won't.","red");
   exit;
}
print("You can adventure underwater.")

Informs the player of how many accordion thief songs he can have active at one time.

boolean four_songs = boolean_modifier("four songs");
   # plexiglass pendant and/or brimstone beret grant 4 songs total.
boolean extra_song = boolean_modifier("additional song");
   # La Hebilla del Cinturón de Lopez adds one song
int max_songs = 3 + to_int(four_songs) + to_int(extra_song);
print("You can currently hold "+ max_songs +" songs in your head at a time.");


See Also

numeric_modifier()