Difference between revisions of "My level"

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
m
imported>Bale
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:my_level()}}
+
{{
{{function|
+
#vardefine:name|my_level}}{{
name=my_level|
+
#vardefine:return_type|int}}{{
returns=int|
+
 
}}
+
FunctionPage|
 +
name={{#var:name}}|
 +
 
 +
function1={{Function|
 +
name={{#var:name}}|
 +
aggregate={{#var:aggregate}}|
 +
return_type={{#var:return_type}}|
 +
return_also={{#var:return_also}}|
 +
}}|
 +
 
 +
function_description=Returns the current logged-in character's level.|
  
This function returns the logged-in character's current level as an [[int]]. It is easily used as an initial test to avoid aborts and loops in scripts which attempt to burn adventures in specific areas due to the targeted area being unavailable. For example:
+
code1={{CodeSample|
 +
title=Code Sample|
 +
description=The following sample will check to see if you can access the Bat Hole Entryway.|
 +
code=
 +
<syntaxhighlight>
 +
if (my_level() >= 4) {
 +
  print("You can get to the Bat Hole Entryway (may need to visit Council first).");
 +
} else {
 +
  print("You aren't a high enough level to fight bats.");
 +
}
 +
</syntaxhighlight>}}|
  
<code>
+
special=When not logged in, this function returns 1.
  [[location]] select_farming_area() {
+
}}
    if ([[my_level()]] >= 10) {
 
      if ([[item_amount]]($[[item]][S.O.C.K.]) + [[item_amount]]($[[item]][intragalactic rowboat]) > 0) {
 
        return $[[location]][Castle in the Clouds in the Sky];
 
      } else {
 
        return $[[location]][Penultimate Fantasy Airship];
 
      }
 
    } else if([[my_level()]] >= 8) {
 
    ...
 
</code>
 
[[Category:Your Character | My level()]]
 
  
When not logged in, this function returns 1.
+
[[Category:Your Character]]

Latest revision as of 21:32, 21 May 2010

Function Syntax

int my_level()

Returns the current logged-in character's level.

Code Sample

The following sample will check to see if you can access the Bat Hole Entryway.

if (my_level() >= 4) {
   print("You can get to the Bat Hole Entryway (may need to visit Council first).");
} else {
   print("You aren't a high enough level to fight bats.");
}

Special

When not logged in, this function returns 1.