My name: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>Bale mNo edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 5: | Line 5: | ||
FunctionPage| | FunctionPage| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
Line 11: | Line 10: | ||
return_type={{#var:return_type}}| | return_type={{#var:return_type}}| | ||
return_also={{#var:return_also}}}}| | return_also={{#var:return_also}}}}| | ||
function_description=Returns the name of the logged-in character.| | function_description=Returns the name of the logged-in character (in all-lowercase).| | ||
code1={{CodeSample| | code1={{CodeSample| | ||
title=Code Samples| | title=Code Samples| | ||
Line 23: | Line 22: | ||
import <MultiBreakfast.ash>; | import <MultiBreakfast.ash>; | ||
} | } | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
{{CodeSample| | |||
description=Note that | description=Note that case doesn't matter for string comparisons, so the following two examples are functionally equivalent.| | ||
code= | code= | ||
<syntaxhighlight> | <syntaxhighlight> | ||
Line 31: | Line 30: | ||
//some_code_here | //some_code_here | ||
} | } | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
{{CodeSample| | |||
code= | code= | ||
<syntaxhighlight> | <syntaxhighlight> | ||
Line 42: | Line 41: | ||
special=When not logged in, this function returns an empty string. | special=When not logged in, this function returns an empty string. | ||
}} | }} | ||
[[Category:Your Character]] |
Latest revision as of 21:31, 21 May 2010
Function Syntax
string my_name()
Returns the name of the logged-in character (in all-lowercase).
Code Samples
This example imports different breakfast scripts depending on which character is running the script.
if (my_name() == "MyMain") {
import <MainBreakfast.ash>;
}
else if (my_name() == "MyMulti") {
import <MultiBreakfast.ash>;
}
Note that case doesn't matter for string comparisons, so the following two examples are functionally equivalent.
if (my_name() == "MyCharacter") {
//some_code_here
}
if (my_name() == "mycharacter") {
//some_code_here
}
See Also
Special
When not logged in, this function returns an empty string.