Black market available: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>Heeheehee
Created the page!
 
imported>StDoodle
mNo edit summary
Line 1: Line 1:
<div style="height: 0">
{{#vardefine:name|black_market_available}}
{{#vardefine:name|black_market_available}}
{{#vardefine:return_type|boolean}}
{{#vardefine:return_type|boolean}}
 
</div>
{{FunctionPage|
{{FunctionPage|
name={{#var:name}}|
name={{#var:name}}|

Revision as of 10:08, 6 March 2010


Function Syntax

boolean black_market_available()

This function returns true if the logged-in character has unlocked the Black Market. Otherwise, it returns false.

Code Samples

If the character can access the Black Market, this code will buy black cherry sodas to restore MP to max.

if(black_market_available()) {
   use((my_maxmp()-my_mp())/10 , $item[black cherry soda]);
}

See Also

guild_store_available() | hippy_store_available() | white_citadel_available()

Special

When not logged in, this function returns false.