String modifier: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>Bale
added code sample.
imported>Fredg1
No edit summary
Line 22: Line 22:
parameter2={{Param|string|modifier_name}}|
parameter2={{Param|string|modifier_name}}|
}}|
}}|
function_description=Returns a string modifier.|
function_description=Returns a string modifier. <br /><br />
For a list of fields that this function takes, see [[Modifiers#String_Modifiers|Modifiers]].|


code1={{CodeSample|
code1={{CodeSample|
Line 44: Line 45:
more_info= See [http://kolmafia.us/showthread.php?802 this thread] for details.|
more_info= See [http://kolmafia.us/showthread.php?802 this thread] for details.|
}}
}}
{{SeeAlso|boolean_modifier|effect_modifier|numeric_modifier|stat_modifier}}


[[Category:Modifier Functions]]
[[Category:Modifier Functions]]

Revision as of 21:09, 1 July 2020

Function Syntax

string string_modifier(string check_me )

string string_modifier(string check_me ,string modifier_name )

Returns a string modifier.

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

Code Samples

Checks current equipped outfit.

if(string_modifier("outfit") == "knob goblin elite guard uniform")
   print("You are equipped to purchase seltzer.");
else print("The Knob scientists won't let you into their store dressed like that.");

Display all modifiers related to your current moon sign.

print("I was born under the sign of the "+ my_sign() +" which gives me these modifiers:");
print( string_modifier("Sign:"+ my_sign(), "Modifiers" ) );

More Information

See this thread for details.


See Also

boolean_modifier() | effect_modifier() | numeric_modifier() | stat_modifier()