Is unrestricted
Function Syntax
boolean is_unrestricted(item check )
boolean is_unrestricted(familiar check )
boolean is_unrestricted(skill check )
boolean is_unrestricted(string check )
Checks whether check is available for use, given current restrictions.
Code Sample
This will attempt to fax in a blooper.
if(is_unrestricted("deluxe fax machine")) {
faxbot($monster[blooper]);
}
else {
print("Fax machine is not available", "red");
}