Difference between revisions of "Guardians"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(Serious confusion about what this does is now corrected! Much RFI added!)
imported>Bale
(Answered RFI)
Line 14: Line 14:
 
}}|
 
}}|
  
function_description=Attempts to pass the six levels of the NS Tower, the door puzzle, the NS's familiars and your shadow. If successful, or if you don't currently have access to the tower, this function returns $item[none]. Otherwise, if you are prevented from going further because you lack the required item, it returns that item.|
+
function_description=Attempts to pass the six levels of the NS Tower, the door puzzle, the NS's familiars and your shadow. If you are prevented from going further because you lack the required item, it returns that item. If you fail for any other reason or if you succeed, it returns $item[none].|
  
 
code1={{CodeSample|
 
code1={{CodeSample|
Line 22: Line 22:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
item missing = guardians();
 
item missing = guardians();
if(missing == $item[none])
+
if(missing == $item[none]) {
   print("You defeated the six tower monsters.");
+
   if(my_adventures() == 0)
else print("You need a "+ missing +" to continue.");
+
      print("No time to defeat the sorceress now.");
 +
  else print("You either can't reach the tower, stuck at the top or ready to fight the sorceress.");
 +
} else print("You need a "+ missing +" to continue.");
 
</syntaxhighlight>
 
</syntaxhighlight>
 
}}|
 
}}|
Line 32: Line 34:
 
cli_equiv=The CLI command "guardians" works similarly.|
 
cli_equiv=The CLI command "guardians" works similarly.|
 
}}
 
}}
 
 
{{RFI|What happens if you don't have enough adventures to complete the tower?|What happens if you cannot get the weight of your familiars to 20?|What happens if you don't have enough healing to defeat the shadow?}}
 

Revision as of 21:13, 29 April 2010

Function Syntax

item guardians()

Attempts to pass the six levels of the NS Tower, the door puzzle, the NS's familiars and your shadow. If you are prevented from going further because you lack the required item, it returns that item. If you fail for any other reason or if you succeed, it returns $item[none].

Code Sample

Defeat the six tower monsters at the NS lair.

item missing = guardians();
if(missing == $item[none]) {
   if(my_adventures() == 0)
      print("No time to defeat the sorceress now.");
   else print("You either can't reach the tower, stuck at the top or ready to fight the sorceress.");
} else print("You need a "+ missing +" to continue.");

CLI Equivalent

The CLI command "guardians" works similarly.

See Also

chamber() | entryway() | hedgemaze() | tavern()