Difference between revisions of "In hardcore"

From Kolmafia
Jump to navigation Jump to search
imported>Grotfang
imported>Bale
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{#vardefine:name|in_hardcore}}
+
{{
{{#vardefine:return_type|boolean}}
+
#vardefine:name|in_hardcore}}{{
 +
#vardefine:return_type|boolean}}{{
  
{{FunctionPage|
+
FunctionPage|
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=Your Character|
 
  
 
function1={{Function|
 
function1={{Function|
Line 29: Line 29:
 
special=When not logged in, this function returns false.
 
special=When not logged in, this function returns false.
 
}}
 
}}
 +
 +
[[Category:Your Character]]

Latest revision as of 21:39, 21 May 2010

Function Syntax

boolean in_hardcore()

This function returns true if the logged-in character is currently subject to Hardcore restrictions. If not subject to such restrictions this function returns false.

Code Samples

The following example attempts to pull items from storage if the character is in Ronin.

if(!can_interact() && !in_hardcore() && storage_amount($item[not-a-pipe]) > 0) {
   take_storage(1 , $item[not-a-pipe]);
}

See Also

can_interact() | storage_amount() | take_storage()

Special

When not logged in, this function returns false.