My id: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>Bale mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{#vardefine:name|my_id}} | {{ | ||
{{#vardefine:return_type|string}} | #vardefine:name|my_id}}{{ | ||
{{FunctionPage| | #vardefine:return_type|string}}{{ | ||
FunctionPage| | |||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
Line 9: | 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 Character ID of the logged-in character.| | function_description=Returns the Character ID of the logged-in character.| | ||
code1={{CodeSample| | code1={{CodeSample| | ||
Line 17: | Line 18: | ||
<syntaxhighlight> | <syntaxhighlight> | ||
visit_url("showplayer.php?who=" + my_id()); | visit_url("showplayer.php?who=" + my_id()); | ||
</syntaxhighlight>}}| | </syntaxhighlight> | ||
}}| | |||
see_also={{SeeAlso|my_name}}| | see_also={{SeeAlso|my_name}}| | ||
special=When no character is logged in, this function returns | special=When no character is logged in, this function returns the Character ID of the last logged-in character or 0 if no character has logged in yet. | ||
}} | }} | ||
[[Category:Your Character]] |
Latest revision as of 21:31, 21 May 2010
Function Syntax
string my_id()
Returns the Character ID of the logged-in character.
Code Sample
This example allows you to visit your own charsheet.
visit_url("showplayer.php?who=" + my_id());
See Also
Special
When no character is logged in, this function returns the Character ID of the last logged-in character or 0 if no character has logged in yet.