Black market available
Jump to navigation
Jump to search
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(floor((my_maxmp() - my_mp()) / 10) , $item[black cherry soda]);
}
See Also
Special
When not logged in, this function returns false.