Difference between revisions of "Council"

From Kolmafia
Jump to navigation Jump to search
imported>Grotfang
(Created page with '{{#vardefine:name|council}} {{#vardefine:return_type|void}} {{FunctionPage| name={{#var:name}}| function_category=Adventuring| function1={{Function| name={{#var:name}}| aggrega…')
 
imported>Bale
m
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{#vardefine:name|council}}
+
{{
{{#vardefine:return_type|void}}
+
#vardefine:name|council}}{{
 +
#vardefine:return_type|void}}{{
  
{{FunctionPage|
+
FunctionPage|
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=Adventuring|
 
  
 
function1={{Function|
 
function1={{Function|
Line 13: Line 13:
 
}}|
 
}}|
  
function_description=This function will visit the council and print the text there to the CLI.|
+
function_description=This function will visit the council and print the text there to the CLI. It is useful insofar as it will trigger the start of level specific quests, that require a visit to council.php.|
  
 
code1={{CodeSample|
 
code1={{CodeSample|
 
title=Code Samples|
 
title=Code Samples|
description=This function needs some sort of application, but I can't think what it might be.|
+
description=When the character reaches level 10, visit the council to open the level 11 quest.|
 
code=
 
code=
 
<syntaxhighlight>
 
<syntaxhighlight>
CODE GOES HERE
+
while(my_level() < 11) {
 +
  adventure(1 , $location[haunted ballroom]);
 +
}
 +
council();
 
</syntaxhighlight>
 
</syntaxhighlight>
 
}}|
 
}}|
  
see_also={{SeeAlso|FIRST|SECOND|ETC}}|
+
see_also={{SeeAlso|my_level|adventure}}|
cli_equiv=LIST_CLI_EQUIVALENT_INFO|
+
cli_equiv=Typing "council" into the CLI will have the same effect.|
more_info=A_LINE_TO_NOTIFY_OF_EXTERNAL_INFO|
 
special=SPECIAL_NOTES_SUCH_AS_NOT-LOGGED-IN_VALUE
 
 
}}
 
}}
 +
 +
[[Category:Adventuring]]

Latest revision as of 22:18, 21 May 2010

Function Syntax

void council()

This function will visit the council and print the text there to the CLI. It is useful insofar as it will trigger the start of level specific quests, that require a visit to council.php.

Code Samples

When the character reaches level 10, visit the council to open the level 11 quest.

while(my_level() < 11) {
   adventure(1 , $location[haunted ballroom]);
}
council();

CLI Equivalent

Typing "council" into the CLI will have the same effect.

See Also

my_level() | adventure()